List tasks
GET
/v1/tasksList tasks across projects with optional filtering by project, sprint, release, status, assignee, and text query.
How to call this endpoint
Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.
Path, query, and header parameters
These parameters control which ACP object the endpoint acts on and how the request is processed.
Path parameters
None.
Query parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| projectId | query | string | No | Filter to a specific project. Use `none` for unscoped tasks. |
| releaseId | query | string | No | Filter to a specific release. Use `none` for tasks without a release. |
| status | query | backlog | todo | in_progress | blocked | done | No | — |
| sprintId | query | string | No | Filter to a specific sprint. Use `none` for tasks without a sprint. |
| assigneeAgentId | query | string | No | — |
| q | query | string | No | Case-insensitive search over title and description. |
| limit | query | integer | No | — |
| offset | query | integer | No | — |
Body schema
This endpoint does not require a request body.
None.
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Task listapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| object | string | No | — |
| data | object[] | No | — |
| data[].id | string | No | Unique identifier. |
| data[].userId | string | No | User ID. |
| data[].projectId | string | No | Project ID. |
| data[].releaseId | string | No | — |
| data[].title | string | No | Display title. |
| data[].description | string | No | Human-readable description. |
| data[].status | backlog | todo | in_progress | blocked | done | No | Current lifecycle status. |
| data[].priority | low | medium | high | urgent | No | — |
| data[].sprintId | string | No | — |
| data[].assigneeAgentId | string | No | — |
| data[].dependencyIds | string[] | No | — |
| data[].linkedThreadIds | string[] | No | — |
| data[].lastStartedThreadId | string | No | — |
| data[].scheduledStartAt | string | No | — |
| data[].scheduledEndAt | string | No | — |
| data[].dueAt | string | No | — |
| data[].completedAt | string | No | ISO 8601 timestamp. |
| data[].sortOrder | number | No | — |
| data[].metadata | object | No | Free-form metadata object. |
| data[].createdAt | string | No | ISO 8601 timestamp. |
| data[].updatedAt | string | No | ISO 8601 timestamp. |
| has_more | boolean | No | — |
| total_count | integer | No | — |