Skip to main content
GET
/
v1
/
voices
Get Voices
curl --request GET \
  --url https://api.example.com/v1/voices \
  --header 'Authorization: Bearer <token>'
{
  "voices": [
    {
      "user_id": "<string>",
      "voice_id": "<string>",
      "name": "<string>",
      "description": "",
      "created_at": 123,
      "updated_at": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

xi-api-key
string | null

Response

Successful Response

voices
Voice · object[]