Retrieve extraction results
Retrieve one extraction or every extraction in a group.
Last updated
Retrieve one extraction or every extraction in a group.
All requests require the X-Api-Key header.
GET /document-extractions/{extraction_id}
Use the extraction identifier returned by asynchronous extraction.
extraction_id
path
string
Yes
200
Extraction details returned.
GetExtractionResponse
400
Invalid request.
ValidationError
401
API key is missing or invalid.
404
No extraction exists with that identifier.
curl -X GET "https://<api-host>/document-extractions/{extraction_id}" \
-H "X-Api-Key: $DOCAI_API_KEY"GET /document-extractions/group/{extraction_group_id}
Use the group identifier returned by bulk extraction. The response is keyed by documentType.
extraction_group_id
path
string
Yes
200
Extractions in the group returned.
GroupExtractionResponse
400
Invalid request.
ValidationError
401
API key is missing or invalid.
404
No extraction group exists with that identifier.
Last updated
curl -X GET "https://<api-host>/document-extractions/group/{extraction_group_id}" \
-H "X-Api-Key: $DOCAI_API_KEY"
