Returns a paginated list of top-level tasks in a workspace, ordered by creation date (newest first).
cURL
curl --request GET \ --url https://api.getarca.app/api/v1/workspaces/{id}/tasks \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": 101, "workspace_id": 3, "list_id": 20, "title": "Set up CI pipeline", "priority": "high", "identifier": 5, "due_date": "2026-03-25T00:00:00.000Z", "start_date": null, "creator_id": 1, "created_at": "2026-03-10T14:22:00.000Z", "status": { "id": 2, "name": "In Progress", "icon": "in-progress", "color": "blue", "category": "active" }, "assignees": [ { "id": 7, "name": "Bob", "avatar_url": "https://cdn.example.com/avatars/bob.png" } ] } ], "page": 1, "limit": 20, "total": 1, "total_pages": 1 }
tasks:read
1
100
Show Task object fields
null
urgent
high
medium
low
none
2
3
Show Status fields
"In Progress"
pending
active
done
cancelled
Show Assignee fields
Was this page helpful?