Process Document
POST
/api/v1/process
Last modified:2025-03-20 07:00:34
Request
Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Header Params
Content-Type
string
optional
Example:
application/json
Body Params application/json
file_url
string
required
skip_images
boolean
required
skip_insights
boolean
required
skip_header_footer
boolean
required
Example
{
"file_url": "string",
"skip_images": true,
"skip_insights": true,
"skip_header_footer": true
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/process' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--data-raw '{
"file_url": "string",
"skip_images": true,
"skip_insights": true,
"skip_header_footer": true
}'
Responses
🟢200Success
application/json
Body
run_id
string
required
run_name
string
required
filename
string
required
created_at
string | integer | boolean | array | object | number | null
required
pages_processed
integer
required
insights_processed
integer
required
status
string
required
notes
string
required
credit_used
integer
required
Example
{
"run_id": "9004571f-093d-40cc-8e9f-07f8bec8653e",
"run_name": "novalad_jobs_2025-03-17-03-42-41",
"filename": "91320_en.pdf",
"created_at": "2025-03-20T06:46:18.811553Z",
"pages_processed": 0,
"insights_processed": 0,
"status": "progress",
"notes": "creating job.. this usually takes between 2-3 min",
"credit_used": 0
}
Modified at 2025-03-20 07:00:34