Check LipDub render status
lipdub_get_renderCheck a LipDub render's current status and retrieve its download link if completed. Returns immediately without waiting, using the render_id from create.
Instructions
Check a LipDub render once, right now, and return its download link if it has finished. This does NOT wait — it answers immediately with whatever the current status is. To wait for a render to finish, use lipdub_wait_for_render instead.
Takes the render_id from lipdub_create_render.
Free and never rate-limited — check as often as you need.
status is one of:
preparing — LipDub is downloading your source files (usually under 2 minutes)
queued — waiting for a render slot
rendering — generating the video
succeeded — done; download_url is included
failed — see failure_reason
download_url is a temporary signed link that expires. Give it to the user or download it promptly; do not save it for later.
If the render is not finished yet, prefer lipdub_wait_for_render — it waits for you instead of making you check repeatedly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| render_id | Yes | The render_id from lipdub_create_render. A plain number is also accepted. |