Get Extraction
Retrieve metadata, processing status, and schema reference for a single extraction. Use the extraction ID returned by the extract endpoint.
GET
/v1/extractions/:idPath parameters
| Parameter | Type | Description |
|---|---|---|
| id | string | The extraction ID (e.g., ext_abc123) |
Example
curl https://api.talonic.com/v1/extractions/ext_abc123 \
-H "Authorization: Bearer tlnc_sk_live_7f3a...x9k2"Response
{
"id": "ext_abc123",
"document_id": "doc_xyz789",
"schema_id": "sch_abc123",
"status": "completed",
"row_count": 1,
"confidence_avg": 0.94,
"created_at": "2026-04-20T14:31:00Z"
}