GET
/
me
/
voices
curl --request GET \
  --url https://api.bolna.dev/me/voices \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "voice_id": "aBcDeFgHiJkLmN",
    "provider": "elevenlabs",
    "name": "Matthew",
    "model": "eleven_turbo_v2_5",
    "accent": "United States (English) female"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
List of voices
id
string

Unique identifier for the voice

voice_id
string

Provider specific unique identifier

Example:

"aBcDeFgHiJkLmN"

provider
enum<string>

Voice provider

Available options:
polly,
cartesia,
elevenlabs,
deepgram,
smallest,
azuretts
Example:

"elevenlabs"

name
string

Human friendly name of the voice

Example:

"Matthew"

model
string

Voice model. Different providers have their own speific voice models

Example:

"eleven_turbo_v2_5"

accent
string

Accent of the voice

Example:

"United States (English) female"