List work
curl --request GET \
--url https://useorgx.com/api/v1/work \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://useorgx.com/api/v1/work', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://useorgx.com/api/v1/work"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "7fbb727d-17c4-4bc7-9fc7-60eb15e9314d",
"title": "Review the launch plan",
"description": null,
"status": "todo",
"priority": "medium",
"due_date": null,
"initiative_id": "4b014796-6b1e-4a4f-9a35-2b6a4d1c8a10",
"workstream_id": "9c1f2e77-3c58-4a1e-9d0b-6a2f8e4b1c33",
"milestone_id": null,
"sequence": 1,
"metadata": {},
"created_at": "2026-08-19T14:00:00.000Z",
"updated_at": "2026-08-19T14:02:11.442Z"
}
],
"meta": {
"apiVersion": "1",
"workspaceId": "5be1076d-8fd0-4c0f-847f-fd67fdb935e8",
"count": 1,
"limit": 25,
"hasMore": false,
"nextCursor": null,
"ordering": "created_at_desc",
"delivery": "cursor_page",
"duplicateTolerant": false
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {},
"requestId": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docsUrl": "<string>",
"retryAfter": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {},
"requestId": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docsUrl": "<string>",
"retryAfter": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {},
"requestId": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docsUrl": "<string>",
"retryAfter": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {},
"requestId": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docsUrl": "<string>",
"retryAfter": 123
}
}Work
List work
List the work items you own in a workspace, newest first.
Paging
Pass meta.nextCursor back as cursor to continue. The cursor is opaque and belongs to the
workspace that minted it. limit defaults to 25 and accepts 1-100; a larger value is
rejected so a short page always means a short page.
Concurrency
Fetch a single item with GET /work/{taskId} when you need the concurrency block that
POST /work/{taskId}/complete requires.
GET
/
work
List work
curl --request GET \
--url https://useorgx.com/api/v1/work \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://useorgx.com/api/v1/work', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://useorgx.com/api/v1/work"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "7fbb727d-17c4-4bc7-9fc7-60eb15e9314d",
"title": "Review the launch plan",
"description": null,
"status": "todo",
"priority": "medium",
"due_date": null,
"initiative_id": "4b014796-6b1e-4a4f-9a35-2b6a4d1c8a10",
"workstream_id": "9c1f2e77-3c58-4a1e-9d0b-6a2f8e4b1c33",
"milestone_id": null,
"sequence": 1,
"metadata": {},
"created_at": "2026-08-19T14:00:00.000Z",
"updated_at": "2026-08-19T14:02:11.442Z"
}
],
"meta": {
"apiVersion": "1",
"workspaceId": "5be1076d-8fd0-4c0f-847f-fd67fdb935e8",
"count": 1,
"limit": 25,
"hasMore": false,
"nextCursor": null,
"ordering": "created_at_desc",
"delivery": "cursor_page",
"duplicateTolerant": false
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {},
"requestId": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docsUrl": "<string>",
"retryAfter": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {},
"requestId": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docsUrl": "<string>",
"retryAfter": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {},
"requestId": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docsUrl": "<string>",
"retryAfter": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {},
"requestId": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docsUrl": "<string>",
"retryAfter": 123
}
}Authorizations
bearerAuthcookieAuth
OrgX API key, sent as Authorization: Bearer oxk_...
Query Parameters
Limit the page to one initiative.
Limit the page to one lifecycle status.
Available options:
todo, in_progress, done, blocked Return only work updated at or after this instant.
Opaque cursor returned as meta.nextCursor by the previous page.
Page size, 1-100. A larger value is rejected rather than reduced.
Required range:
1 <= x <= 100