Response

FieldTypeDescription
video_translate_idstrID of the video.
titlestrTitle of the video.
statusstrVideo status, one of
- running (The video is rendering)
- success (The video render success)
- failed (An error occurred when rendering video)
- pending (The video rendering waiting in queue)
urlstrThe URL of the video after completed. The URL will be expired in seven days.
messagestrOptional, the error detail of the video.
{
  "error": null,
  "data": {
    "video_translate_id": "<video_translate_id>",
    "title": "New Video",
    "status": "success",
    "url": "<url>",
    "message": null
  }
}
{
  "error": null,
  "data": {
    "video_translate_id": "<video_translate_id>",
    "title": "New Video",
    "status": "failed",
    "url": null,
    "message": "<message>"
  }
}
{
  "error": null,
  "data": {
    "video_translate_id": "<video_translate_id>",
    "title": "New Video",
    "status": "pending",
    "url": null,
    "message": null
  }
}
{
  "error": null,
  "data": {
    "video_translate_id": "<video_translate_id>",
    "title": "New Video",
    "status": "running",
    "url": null,
    "message": null
  }
}

📘

The video file URL you get will expire in 7 days. 📆

You can observe this expiration in the URL parameters. Every time you call the video status endpoint, the Expires and other queries are regenerated accordingly.

Language
Authorization
Header
Click Try It! to start a request and see the response here!