List Extractions
List extraction results across your workspace with GET /v1/extractions. Filter by document, status, or time range and page through results with cursors.
The List Extractions endpoint, GET /v1/extractions, returns the extraction results across your Talonic workspace. An extraction is the per-document result of the extraction process: the structured output produced from one document, its field values plus confidence scores. A single document can have multiple extractions if different schemas are applied to it or if it is re-extracted.
Use this endpoint to browse extraction results across your organization. Filter by document, status, or time range to find specific results. Each extraction summary includes an overall confidence score and links to the full result.
created_at by default. Use the after and before parameters to narrow results to a specific time window./v1/extractionsQuery parameters
20desccurl
Response
Response fields
Response
{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "complete",
"document_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"document_filename": "invoice-0847.pdf",
"confidence_overall": 0.94,
"created_at": "2024-09-14T10:33:12.000Z",
"links": {
"self": "/v1/extractions/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"document": "/v1/documents/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
],
"pagination": {
"total": 89,
"limit": 20,
"has_more": true,
"next_cursor": "eyJpZCI6ImExYjJjM2Q0IiwiY3JlYXRlZEF0IjoiMjAyNC0wOS0xNFQxMDozMzoxMloifQ=="
}
}Errors
Error responses