GET
/
dub-result
/
{run_id}
curl --request GET \
  --url https://client.camb.ai/apis/dub-result/{run_id} \
  --header 'x-api-key: <api-key>'
{
  "run_id": 123,
  "output_video_url": "<string>",
  "output_audio_url": "<string>",
  "transcript": [
    {
      "start": 123,
      "end": 123,
      "text": "<string>",
      "speaker": "<string>"
    }
  ]
}

This endpoint upon completion of the run, it returns URLs for the dubbed video and dubbed audio files, along with the transcription in the format of speakers assigned and the dialogue for each speaker with its timestamps.

Authorizations

x-api-key
string
header
required

The x-api-key is a custom header required for authenticating requests to our API. Include this header in your request with the appropriate API key value to securely access our endpoints. You can find your API key(s) in the 'API' section of our studio website.

Path Parameters

run_id
integer
required

The unique identifier for the run, which was generated during the end to end dub creation process and returned upon task completion.

Response

200
application/json
Successful Response

The response is of type object.