Get Extraction Data
Retrieve just the extracted data from an extraction result without metadata. Supports CSV export format for download.
GET
/v1/extractions/:id/dataResponse
Response fields
(field_name)anyEach key is an extracted field name; value is the extracted value. Shape matches the schema used during extraction.
Response (JSON)
{
"vendor_name": "Acme Corp",
"invoice_number": "INV-2024-0847",
"total_amount": 14250.00,
"due_date": "2024-03-15"
}Errors
Error responses
401unauthorizedMissing or invalid API key.
404not_foundNo extraction with this ID exists for your organization.
429rate_limitedToo many requests. Retry after the period indicated in the Retry-After header.