Get Job Status
Task Management
Get Job Status
Retrieve the current status and details of a specific job.
GET
Get Job Status
Authentication
This endpoint requires an API key with thecheck_status scope.
Path Parameters
The unique identifier of the job to retrieve.
Response
Unique identifier of the job.
Current status of the job. See status enum below.
Job progress as a percentage:
0 (pending), 50 (processing), 100 (completed).Direct URL string of the first output item. This is a convenience field for quick access.
null if the job has not completed yet.Full array of output items with detailed metadata.
null if the job has not completed yet. Each item contains url, type, thumbnail, and posterImage fields.Error details if the job failed. Contains
code and message fields.ISO 8601 timestamp of when the job was created.
ISO 8601 timestamp of when the job completed.
null if still in progress.Status Enum
| Status | Description |
|---|---|
pending | Job has been submitted and is waiting in the queue. |
processing | A worker has picked up the job and generation is in progress. |
completed | Job has finished successfully. Output is available. |
failed | Job encountered an error. Credits are automatically refunded. |
cancelled | Job was cancelled by the user. Credits are refunded. |
Output Type Enum
| Type | Description |
|---|---|
video | Generated video file. |
image | Generated image file. |
audio | Generated audio file. |
text | Generated text content. |