get_tasks
Retrieve tasks from a ClickUp list using list ID or name, with filters for status, assignees, due dates, and more. Supports pagination and subtasks.
Instructions
Get tasks from a ClickUp list with optional filters. Supports direct name-based lookup for lists - no need to know the list ID. If the list doesn't exist, you can create it using create_list or create_list_in_folder.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| listId | No | ID of the list to get tasks from (optional if using listName instead) | |
| listName | No | Name of the list to get tasks from - will automatically find the list by name (optional if using listId instead) | |
| archived | No | Include archived tasks | |
| page | No | Page number for pagination | |
| order_by | No | Field to order tasks by | |
| reverse | No | Reverse the order of tasks | |
| subtasks | No | Include subtasks | |
| statuses | No | Filter tasks by status | |
| include_closed | No | Include closed tasks | |
| assignees | No | Filter tasks by assignee IDs | |
| due_date_gt | No | Filter tasks due after this timestamp | |
| due_date_lt | No | Filter tasks due before this timestamp | |
| date_created_gt | No | Filter tasks created after this timestamp | |
| date_created_lt | No | Filter tasks created before this timestamp | |
| date_updated_gt | No | Filter tasks updated after this timestamp | |
| date_updated_lt | No | Filter tasks updated before this timestamp | |
| custom_fields | No | Filter tasks by custom field values |