Get Tasks
Retrieves a list of tasks with optional filtering and pagination.
Retrieve a list of tasks with optional filtering and pagination. This endpoint allows you to search, filter, and paginate through your tasks.Documentation Index
Fetch the complete documentation index at: https://open.manus.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Query Parameters
Use these parameters to filter and paginate through tasks:- after: Cursor for pagination (ID of the last task from previous page)
- limit: Maximum number of tasks to return (default: 100, range: 1-1000)
- order: Sort direction - “asc” or “desc” (default: “desc”)
- orderBy: Sort field - “created_at” or “updated_at” (default: “created_at”)
- query: Search term to filter by title and body content
- status: Array of status values to filter by - “pending”, “running”, “completed”, “failed”
- createdAfter: Unix timestamp to filter tasks created after this time
- createdBefore: Unix timestamp to filter tasks created before this time
- project_id: Filter tasks by project ID - returns only tasks belonging to the specified project
Authorizations
Query Parameters
Cursor for pagination. ID of the last task from the previous page.
Maximum number of tasks to return. Default: 100, Range: 1-1000.
Sort direction: "asc" or "desc". Default: "desc".
Sort field: "created_at" or "updated_at". Default: "created_at".
Search term to filter by title and body content.
Filter by task status: "pending", "running", "completed", "failed".
Filter tasks created after this Unix timestamp (seconds).
Filter tasks created before this Unix timestamp (seconds).
Filter tasks by project ID. Returns only tasks belonging to the specified project.