List Jobs
List all extraction jobs with status, progress, and pagination. Filter by status to find queued, processing, completed, failed, or cancelled jobs.
Jobs track asynchronous extraction work. Create a job with a schema and document set, then poll for progress. Each job runs the full 4-phase extraction pipeline.
The 4-phase pipeline consists of: Phase 1 (Resolve) which fills 60-80% of cells using registry transfer, raw extraction mapping, lookup cascades, and deterministic compute; Phase 2 (Agent) which uses Claude to extract remaining values; Phase 3 (Resolve II) which normalizes LLM-extracted values to canonical codes; and Phase 4 (Transform) which applies deterministic transforms, validation, and format constraints.
/v1/jobsResponse
Response fields
Response
{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Q4 Invoice Run",
"status": "complete",
"progress": null,
"estimated_seconds_remaining": null,
"schema": { "id": "sch_uuid_1", "name": "Invoice" },
"document_count": 48,
"completed_documents": 48,
"grid_stats": {
"total_cells": 2016,
"filled": 1890,
"empty": 126,
"fill_rate": 0.94
},
"current_phase": null,
"created_at": "2024-09-14T10:32:00.000Z",
"started_at": "2024-09-14T10:32:05.000Z",
"completed_at": "2024-09-14T10:35:22.000Z",
"links": {
"self": "/v1/jobs/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"dashboard": "https://app.talonic.com/jobs/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
],
"pagination": {
"total": 67,
"limit": 20,
"has_more": true,
"next_cursor": "eyJjcmVhdGVkQXQiOiIyMDI0LTA5LTE0VDEwOjMyOjAwLjAwMFoiLCJpZCI6ImExYjJjM2Q0In0="
}
}Errors
Error responses