Async Endpoint Examples
Async Upload
This endpoint provides a pre-signed URL for uploading a file and a unique file ID.
POST
/
async
/
upload
Authorizations
Headers
Your API key.
Body
application/json
The name of the file to be uploaded.
The type of processing to apply to the uploaded file. Default is file
, which will parse full content from the input file. table
will extract tables from the input file. json
will extract key-value pairs from the input file. file_refined_quick
will parse the full content from the input file with a larger model. extract_pii
will extract PII (personally identifiable information) from the input file.
Available options:
file
, table
, json
, file_refined_quick
, extract_pii
Arguments for extraction processing.