Skip to main content

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/:id

Path parameters

ParameterTypeDescription
idstringThe 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"
}