Get render job
get_jobPoll a render job by ID to check its status (queued, running, done, error). Returns progress and the served media URL when complete.
Instructions
Poll a render job by id. Returns status (queued|running|done|error), progress, and on done the served media URL. Renders take 1–3 minutes: keep calling this until done/error without asking the user — several calls is normal, not a stall.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | the job id, e.g. job_xxx |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | the job id | |
| url | No | the served media URL once done | |
| type | No | the job type (video / stitch / avatar / …) | |
| error | No | the failure message when status is error | |
| result | No | the raw job result payload | |
| status | No | queued | running | done | error | |
| progress | No | 0–1 progress when reported |