Skip to main content
POST
/
v1
/
extract
/
async
Extract Data (Asynchronous)
curl --request POST \
  --url https://api.kiriku.app/v1/extract/async \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file' \
  --form 'documentType=<string>'
{
  "extractionId": "<string>",
  "status": "queued"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data
file
file
required
documentType
string
required

Response

200 - application/json

Queued successfully

extractionId
string
status
string
Example:

"queued"