GET
/
list-voices
curl --request GET \
  --url https://api.retellai.com/list-voices \
  --header 'Authorization: Bearer <token>'
[
  {
    "voice_id": "11labs-Adrian",
    "voice_name": "Adrian",
    "provider": "elevenlabs",
    "accent": "American",
    "gender": "male",
    "age": "Young",
    "preview_audio_url": "https://retell-utils-public.s3.us-west-2.amazonaws.com/adrian.mp3"
  }
]

Authorizations

Authorization
string
headerrequired

Authentication header containing API key (find it in dashboard). The format is "Bearer YOUR_API_KEY"

Response

200 - application/json
voice_id
string
required

Unique id for the voice.

voice_name
string
required

Name of the voice.

provider
enum<string>
required

Indicates the provider of voice.

Available options:
elevenlabs,
openai,
deepgram
accent
string

Accent annotation of the voice.

gender
enum<string>
required

Gender of voice.

Available options:
male,
female
age
string

Age annotation of the voice.

preview_audio_url
string

URL to the preview audio of the voice.