Skip to main content
GET
/
v1
/
jobs
/
{packageId}
/
status
Get job status by polling with packageId
curl --request GET \
  --url https://demands-api.tavrn.ai/v1/jobs/{packageId}/status \
  --header 'Authorization: Bearer <token>'
{
  "packageId": "<string>",
  "status": "created",
  "fileCount": 123,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

packageId
string
required

The package ID of the job.

Response

Current status of the job

packageId
string
status
enum<string>
Available options:
created,
processing,
done,
failed
fileCount
number
message
string