Beatra

Get a voice's detail

GET
/v1/voices/{voice_id}

Path Parameters

voice_id
Required
Voice Id

Header Parameters

Authorization
Required
string

Bearer API key.

X-Request-Idstring

Optional client request id echoed in the response.

curl -X GET "https://example.com/v1/voices/string" \
  -H "Authorization: string" \
  -H "X-Request-Id: string"

Successful Response

{
  "voice_id": "string",
  "display_name": "string",
  "category": "preset",
  "language": "string",
  "languages_supported": [
    "string"
  ],
  "gender": "male",
  "age": "adult",
  "accent": "string",
  "use_case": [
    "string"
  ],
  "preview_url": "string",
  "compatible_models": [
    "string"
  ],
  "status": "processing",
  "created_at": "string"
}