Extraction Job
Takes as input a list of documents urls and a schema for the response format, and returns a job id. The job will be processed in the background and the results will be available via the /job/{id} endpoint. You can call the GET /job/{id} endpoint to check the status of the job and the results.
Authorizations
X-Account-IdstringRequired
Body
one_row_per_pagebooleanOptional
If true, one row will be created for each page of the documents
Responses
200
Job created successfully
application/json
400
Invalid request
application/json
401
Unauthorized
500
Internal server error
application/json
post
/jobAuthorizations
X-Account-IdstringRequired
Path parameters
idstring · uuidRequired
Job ID
Query parameters
include_extractionsbooleanOptionalDefault:
Include extraction results in response
falseResponses
200
Job details retrieved successfully
application/json
400
Invalid request
401
Unauthorized
500
Internal server error
application/json
get
/job/{id}Last updated