This is a catch-all provider — any valid URL under
https://api.clickup.com is supported. Any ClickUp API endpoint. v2 paths start with /api/v2 (most of the product — workspaces/teams, spaces, folders, lists, tasks, comments, time tracking, webhooks). v3 paths start with /api/v3 (chat, docs, audit logs, attachments). Construct URL as https://api.clickup.com/{path}. See https://developer.clickup.com/reference for full reference. The endpoints below are curated examples.Endpoints
List Workspaces (called “teams” in the v2 API) the authorized user can access. Use first to discover workspace IDs for downstream calls.
GEThttps://api.clickup.com/api/v2/team — Free
- SDK
- cURL
Get the authorized user.
GEThttps://api.clickup.com/api/v2/user — Free
- SDK
- cURL
List spaces under a Workspace (team_id).
GEThttps://api.clickup.com/api/v2/team/{team_id}/space — Free
- SDK
- cURL
List folders under a space.
GEThttps://api.clickup.com/api/v2/space/{space_id}/folder — Free
- SDK
- cURL
List lists under a folder.
GEThttps://api.clickup.com/api/v2/folder/{folder_id}/list — Free
- SDK
- cURL
List tasks in a list. Supports filters: page, archived, include_closed, order_by, assignees, tags, due_date_gt, etc.
GEThttps://api.clickup.com/api/v2/list/{list_id}/task?archived=false&include_closed=false — Free
- SDK
- cURL
Create a task in a list.
POSThttps://api.clickup.com/api/v2/list/{list_id}/task — Free
- SDK
- cURL
Retrieve a single task by ID. Supports custom_task_ids and team_id query params.
GEThttps://api.clickup.com/api/v2/task/{task_id} — Free
- SDK
- cURL
Update a task. Only fields in the body are modified — use status, name, description, priority, assignees_add, assignees_rem, etc.
PUThttps://api.clickup.com/api/v2/task/{task_id} — Free
- SDK
- cURL
Delete a task.
DELETEhttps://api.clickup.com/api/v2/task/{task_id} — Free
- SDK
- cURL
Get filtered tasks across a whole Workspace. Supports page, assignees, statuses, tags, date filters, space_ids, project_ids, list_ids.
GEThttps://api.clickup.com/api/v2/team/{team_id}/task?include_closed=false — Free
- SDK
- cURL
Add a comment to a task.
POSThttps://api.clickup.com/api/v2/task/{task_id}/comment — Free
- SDK
- cURL
Get time entries within a date range for a Workspace. Supports start_date, end_date, assignee, include_task_tags.
GEThttps://api.clickup.com/api/v2/team/{team_id}/time_entries — Free
- SDK
- cURL
Create a time entry for a Workspace.
POSThttps://api.clickup.com/api/v2/team/{team_id}/time_entries — Free
- SDK
- cURL
Create a webhook subscription for a Workspace.
POSThttps://api.clickup.com/api/v2/team/{team_id}/webhook — Free
- SDK
- cURL
Update a Chat channel (v3) — name, description, topic, visibility.
PATCHhttps://api.clickup.com/api/v3/workspaces/{workspace_id}/chat/channels/{channel_id} — Free
- SDK
- cURL
Next Steps
All Providers
Browse all supported AI providers
Forward Proxy
Learn how to construct proxy URLs and authenticate requests