PHPackages                             viisut/clickup-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. viisut/clickup-php

ActiveLibrary[API Development](/categories/api)

viisut/clickup-php
==================

ClickUp API client (unofficial)

v1.0.2(5y ago)06MITPHPPHP &gt;=5.6

Since Sep 23Pushed 5y agoCompare

[ Source](https://github.com/Viisut/clickup-php)[ Packagist](https://packagist.org/packages/viisut/clickup-php)[ RSS](/packages/viisut-clickup-php/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (5)Used By (0)

clickup-php
===========

[](#clickup-php)

A simple wrapper for [ClickUp](https://clickup.com/) API (v1-BETA).

Install
-------

[](#install)

```
composer require "howyi/clickup-php"

```

Usage
-----

[](#usage)

### Generate client

[](#generate-client)

```
// create Client (required: API_TOKEN)
$client = new ClickUp\Client('API_TOKEN');
```

### get

[](#get)

```
// me
$client->user();
// -> \ClickUp\Objects\User

// all affiliated teams
$client->teams()->objects();
// -> \ClickUp\Objects\Team[]

// team by team id
$team = $client->team($teamId);
// team by name
$team = $client->teams()->getByName('team_name');
// -> \ClickUp\Objects\Team

// spaces in team
$team->spaces()->objects();
// -> \ClickUp\Objects\Space[]

// space by space id
$space = $team->space(888);
// space by name
$space = $team->spaces()->getByName('spaaaaace');
// -> \ClickUp\Objects\Space

// projects in space
$space->projects()->objects();
// -> \ClickUp\Objects\Project[]

// project by project id
$project = $space->project(11111);
// project by name
$project = $space->projects()->getByName('super cool project');
// -> \ClickUp\Objects\Project

// lists in project
$project->taskLists()->objects();
// -> \ClickUp\Objects\TaskList[]

// list by list id
$taskList = $project->taskList(9999);
// list by name
$taskList = $project->taskLists()->getByName('T A S K L I S T');
// -> \ClickUp\Objects\TaskList

// tasks by list
$tasks = $taskList->tasks()->objects();
// -> \ClickUp\Objects\Task[]

// task by task id
$task = $taskList->task(3333);
// -> \ClickUp\Objects\Task
```

### create

[](#create)

```
/**
 * create task list in project
 * @see https://jsapi.apiary.io/apis/clickup/reference/0/list/create-list.html
 */
$project->createTaskList(['name' => 'newTaskList']);

/**
 * create task in list
 * @see https://jsapi.apiary.io/apis/clickup/reference/0/task/create-task-in-list?console=1.html
 */
$taskList->createTask(['name' => 'my second task']);
```

### update

[](#update)

```
/**
 * update task list
 * @see https://jsapi.apiary.io/apis/clickup/reference/0/list/edit-list.html
 */
$taskList->edit(['name' => 'renamed task list']);

/**
 * update task
 * @see https://jsapi.apiary.io/apis/clickup/reference/0/task/edit-task.html
 */
$task->edit(['name' => 'renamed task']);
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~315 days

Total

4

Last Release

1896d ago

Major Versions

v0.0.1 → v1.0.02018-09-25

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/12573149?v=4)[viisut](/maintainers/viisut)[@Viisut](https://github.com/Viisut)

---

Top Contributors

[![Viisut](https://avatars.githubusercontent.com/u/12573149?v=4)](https://github.com/Viisut "Viisut (2 commits)")

---

Tags

apiClickUpclick-up

### Embed Badge

![Health badge](/badges/viisut-clickup-php/health.svg)

```
[![Health](https://phpackages.com/badges/viisut-clickup-php/health.svg)](https://phpackages.com/packages/viisut-clickup-php)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[resend/resend-php

Resend PHP library.

617.2M43](/packages/resend-resend-php)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

563.6M13](/packages/checkout-checkout-sdk-php)[howyi/clickup-php

ClickUp API client (unofficial)

2925.8k](/packages/howyi-clickup-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
