Skip to main content
GET
/
v1
/
me
/
dubs
/
{dubId}
Get dub by ID
curl --request GET \
  --url https://api.voicedub.ai/v1/me/dubs/{dubId} \
  --header 'Authorization: <api-key>'
{
  "dub": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "voiceId": "123e4567-e89b-12d3-a456-426614174001",
    "link": "https://example.com/audio.mp3",
    "separate": true,
    "status": "done",
    "inputDuration": 180000,
    "inputSource": "upload",
    "pitchShift": 0,
    "errorCode": null,
    "errorMessage": null,
    "apiCreditsUsed": 30,
    "apiCreditsLeft": 90,
    "completedAt": "2024-01-15T10:30:00.000Z",
    "createdAt": "2024-01-15T10:00:00.000Z",
    "updatedAt": "2024-01-15T10:30:00.000Z",
    "dubUrl": "https://example.com/dubs/123e4567-e89b-12d3-a456-426614174000.mp3",
    "requiredCredits": 30
  }
}

Authorizations

Authorization
string
header
required

API key in the format: "Api-Key "

Path Parameters

dubId
string<uuid>
required

UUID of the dub to retrieve

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

Dub retrieved successfully

dub
object
required