Endpoints
Get extraction results
Get the results of a schema extraction job by polling
GET
Get extraction results
Response structure
The response contains extracted data organized hierarchically. Each field in extracted_data
can be either:
- A primitive field (like
invoice_number
) - An object containing nested fields (like
customer
) - An array of objects (like
line_items
)
Each primitive field contains:
name
: Field identifiervalue
: Extracted contentconfidence
: Accuracy score (0-1)field_type
: Data type (string, number, date, phone, email)page_index
: Page from which the value was extractedsource_context
: Extraction context details
See below for an example with primitives, objects and an array:
Headers
Bearer token for authentication
Path Parameters
ID of the extraction job
Response
200 - application/json
Extraction results
The response is of type object
.
Get extraction results