v4

OpenAPI 3.1.02026-07-313621,3961.8 MB
dubbing
dubbing
dubbing

Get Dubbing

Returns metadata about a dubbing project, including whether it's still in progress or not

get/v1/dubbing/{dubbing_id}

Path parameters

dubbing_idstring required

ID of the dubbing project.

ID of the dubbing project.

Headers

xi-api-keystring nullable

Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

Response

Successful Response

dubbing_idstring required

The ID of the dubbing project.

namestring required

The name of the dubbing project.

statusstring required

The state this dub is in.

source_languagestring nullable required

Once dubbing has completed, the ISO-639-1 code of the original media's source language.

target_languagesstring[] required

The ISO-639-1 code of the languages this media has been dubbed into.

editableboolean

Whether this dubbing project is editable in Dubbing Studio.

created_atstring date-time required

Timestamp this dub was created.

errorstring nullable

Error message indicate, if this dub has failed, what happened.

Example response

{
  "created_at": "2025-07-15T14:49:41.149000",
  "dubbing_id": "21m00Tcm4TlvDq8ikWAM",
  "editable": true,
  "media_metadata": {
    "content_type": "video/mp4",
    "duration": 127.5
  },
  "name": "My Dubbing Project",
  "source_language": "en",
  "status": "dubbed",
  "target_languages": [
    "es",
    "fr",
    "de"
  ]
}