Skip to main content
POST
/
dubbing
/
job
/
{request_id}
/
sources
Add Additional Source
curl --request POST \
  --url https://dubbing.deepdub.app/dubbing/job/{request_id}/sources \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "source": "AUDIO_HINTS",
  "assetPath": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key issued by Deepdub. Contact your account manager to obtain one.

Path Parameters

request_id
string
required

Body

application/json
source
enum<string>
required

Type of source asset (e.g., 'AUDIO_HINTS', 'CC_SDH', 'MISC')

Available options:
AUDIO_HINTS,
CC_SDH,
MISC
assetPath
string
required

S3 path to the asset file (must start with 's3://', e.g., 's3://bucket/asset.mp4')

Response

Successful Response