Skip to main content
GET
/
v1
/
me
/
voices
/
{voiceId}
Get voice by ID
curl --request GET \
  --url https://api.voicedub.ai/v1/me/voices/{voiceId} \
  --header 'Authorization: <api-key>'
{
  "voice": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "My Custom Voice",
    "status": "done",
    "separate": true,
    "maxMinutes": 10,
    "errorCode": null,
    "errorMessage": null,
    "apiCreditsUsed": 100,
    "apiCreditsLeft": 450,
    "completedAt": "2024-01-15T10:30:00.000Z",
    "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 retrieve

Example:

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

Response

Voice retrieved successfully

voice
object
required