Request fields
The
video_id returned when you uploaded your video.The
video_id of a previously uploaded template video. Clipzy extracts the style from this video and applies it to your footage. See Style templates for details.Processing configuration options.
A URL that Clipzy calls with the job result when processing completes or fails. See Webhooks for the payload structure.
Create a job
Collect your video_id
You need the
video_id from a previous upload. If you haven’t uploaded your video yet, follow the Upload video guide first.Response fields
Unique identifier for this job. Pass it to
GET /api/v1/jobs/{job_id} to check progress, or GET /api/v1/jobs/{job_id}/result when complete.The
video_id this job is processing.Current job status. Immediately after creation, this is
"queued". Possible values:| Status | Meaning |
|---|---|
queued | Job is waiting to be picked up by a worker. |
processing | Actively running through processing stages. |
completed | Finished successfully. Result is available. |
failed | Encountered an unrecoverable error. |
cancelled | Cancelled before completion. |
Integer from
0 to 100 indicating overall completion. Always 0 when first created.The active processing stage.
null when queued. See Track progress for the full stage sequence.ISO 8601 timestamp when the job was created.
ISO 8601 timestamp of the last status change.
Next steps
- Track progress — poll the job status or wait for a webhook.
- Webhooks — receive a notification when the job finishes.
- Style templates — learn how
template_video_idaffects the output.