List work items
Lists canonical Execute work items in the resolved workspace. This is not a legacy tickets API and does not expose board-specific coordinates.
GET
/api/v1/work-itemsAuthorization
work-items:readapi key scoperequiredRequired scope when calling with an API key.
Query parameters
team_idstringoptionalFilter by Execute team
Example: team_abc123
sprint_idstringoptionalFilter by sprint
Example: sprint_abc123
parent_idstringoptionalFilter by parent work item
Example: work_abc123
assignee_user_idstringoptionalFilter by assigned user
Example: user_abc123
status_bucketstringoptionalRepeat or comma-separate canonical buckets
Example: todo,in_progress
limitnumberoptionalMaximum items, 1–100
Example: 50
Request
curl -X GET "https://www.digitalstack360.com/api/v1/work-items" \
-H "Authorization: Bearer $DS_API_KEY"Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.
Response
200 OK
{
"data": [
{
"id": "work_01k2...",
"team_id": "team_abc123",
"sprint_id": "sprint_abc123",
"parent_id": null,
"key": "DSN-42",
"title": "Implement board projection API",
"description": "Return canonical bucket columns without making board coordinates authoritative.",
"kind": "task",
"flow_state_id": "state_todo",
"status_bucket": "todo",
"assignee_user_id": "user_abc123",
"reporter_user_id": null,
"labels": [
"api"
],
"points": 3,
"source": "user",
"created_by_user_id": "user_reporter",
"created_at": "2026-07-15T14:22:04Z",
"updated_at": "2026-07-15T14:22:04Z"
}
],
"meta": {
"limit": 50,
"count": 1
}
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks work-items:read scope
400
invalid_limitlimit is outside the 1–100 range
400
invalid_status_bucketstatus_bucket is not a canonical Execute bucket