Poll status
API reference
Poll status
Check the status of an async conversion job
GET
Poll status
Poll the status of a conversion job that was started with
"async": true or that timed out during synchronous processing.
Request
Headers
| Header | Value | Required |
|---|---|---|
Authorization | Bearer YOUR_API_TOKEN | Yes |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
jobId | string | Yes | The job ID returned from the convert endpoint |
Example request
Response
The response includes the current job state, progress information, and the result when the job completes.| Field | Type | Description |
|---|---|---|
success | boolean | Whether the API call succeeded |
jobId | string | The job ID |
state | string | Current job state: waiting, active, completed, or failed |
progress | number | Progress percentage (0–100) |
currentStep | string | Description of the current processing step |
result | object | Conversion result (only present when state is completed) |
error | string | Error message (only present when state is failed) |
Job states
| State | Description |
|---|---|
waiting | Job is queued and waiting to be processed |
active | Job is currently being processed |
completed | Job finished successfully — check the result field |
failed | Job failed — check the error field |