get_tasks
Retrieve tasks from a ClickUp List with filters for status, assignees, tags, date ranges, custom fields, and ordering. Supports pagination and subtasks.
Instructions
Get tasks in a specific List with rich filtering — by status, assignees, tags, and due/created/updated date ranges — plus ordering, subtasks and custom-field filters. Paginated. Use when you know which List the tasks live in.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | ID of the List to read tasks from. | |
| archived | No | If true, include archived tasks. Defaults to false. | |
| include_closed | No | If true, also include closed/done tasks. | |
| page | No | 0-based page number for pagination. Defaults to 0. | |
| order_by | No | Field to sort by. | |
| reverse | No | If true, reverse the sort order (descending). | |
| subtasks | No | If true, include subtasks in the results. | |
| statuses | No | Only return tasks whose status name is in this list. | |
| assignees | No | Only return tasks assigned to any of these user ids. | |
| tags | No | Only return tasks that have all of these tag names. | |
| due_date_gt | No | Only tasks due AFTER this date (natural language, ISO, or epoch ms). | |
| due_date_lt | No | Only tasks due BEFORE this date. | |
| date_created_gt | No | Only tasks created AFTER this date. | |
| date_created_lt | No | Only tasks created BEFORE this date. | |
| date_updated_gt | No | Only tasks updated AFTER this date. | |
| date_updated_lt | No | Only tasks updated BEFORE this date. | |
| custom_fields | No | Array of custom-field filter conditions. |