Extraction Job

Create a new extraction job

post

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
post
/job

Get job status and results

get
Authorizations
X-Account-IdstringRequired
Path parameters
idstring · uuidRequired

Job ID

Query parameters
include_extractionsbooleanOptional

Include extraction results in response

Default: false
Responses
200

Job details retrieved successfully

application/json
get
/job/{id}

Last updated