Skip to main content
POST
/
v1
/
me
/
voices
/
{voiceId}
/
clone
Start voice training
curl --request POST \
  --url https://api.voicedub.ai/v1/me/voices/{voiceId}/clone \
  --header 'Authorization: <api-key>'
{
  "voice": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "My Custom Voice",
    "status": "queued",
    "separate": true,
    "maxMinutes": 10,
    "errorCode": null,
    "errorMessage": null,
    "apiCreditsUsed": 100,
    "apiCreditsLeft": 450,
    "completedAt": null,
    "createdAt": "2024-01-15T10:00:00.000Z",
    "updatedAt": "2024-01-15T10:30:00.000Z",
    "requiredCredits": 100
  }
}

Authorizations

Authorization
string
header
required

API key in the format: "Api-Key "

Path Parameters

voiceId
string<uuid>
required

UUID of the voice to start training

Example:

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

Response

Voice training started successfully

voice
object
required