Job Dashboard
Query project job data points
Returns paginated job data points for the current project.
get/api/v1/job-data-points
Query parameters
job_type'extract' | 'parse' | 'classify' required
Job type to query.
Example:parse
Job type to query.
hoursinteger
Hours of history to include.
Example:24
Hours of history to include.
statusstring[] nullable
Filter by status.
Filter by status.
[ "completed", "failed" ]
page_sizeinteger nullable
Number of items per page.
Example:100
Number of items per page.
page_tokenstring nullable
Cursor token for the next page.
Cursor token for the next page.
created_at_on_or_afterstring date-time nullable
Include items created at or after this timestamp (inclusive)
Include items created at or after this timestamp (inclusive)
created_at_on_or_beforestring date-time nullable
Include items created at or before this timestamp (inclusive)
Include items created at or before this timestamp (inclusive)
project_idstring uuid nullable
organization_idstring uuid nullable
Cookies
sessionstring nullable
Response
Successful Response
Example response
{
"items": [
{
"created_at": "2026-04-29T18:00:00Z",
"custom_tag": "premium",
"id": "pjb-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"project_id": "11111111-1111-1111-1111-111111111111",
"state_transitions": {
"completed_at": "2026-04-29T18:01:00Z",
"pending_at": "2026-04-29T18:00:00Z",
"running_at": "2026-04-29T18:00:05Z"
},
"status": "completed",
"updated_at": "2026-04-29T18:01:00Z"
}
]
}