GET
/
api
/
voices
cURL
curl --request GET \
  --url https://api.ultravox.ai/api/voices \
  --header 'X-API-Key: <api-key>'
{
  "next": "http://api.example.org/accounts/?cursor=cD00ODY%3D\"",
  "previous": "http://api.example.org/accounts/?cursor=cj0xJnA9NDg3",
  "results": [
    {
      "voiceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "description": "<string>",
      "previewUrl": "<string>",
      "ownership": "public",
      "billingStyle": "VOICE_BILLING_STYLE_INCLUDED",
      "definition": {
        "elevenLabs": {
          "voiceId": "<string>",
          "model": "<string>",
          "speed": 123,
          "useSpeakerBoost": true,
          "style": 123,
          "similarityBoost": 123,
          "stability": 123,
          "pronunciationDictionaries": [
            {
              "dictionaryId": "<string>",
              "versionId": "<string>"
            }
          ],
          "optimizeStreamingLatency": 123,
          "maxSampleRate": 123
        },
        "cartesia": {
          "voiceId": "<string>",
          "model": "<string>",
          "speed": 123,
          "emotion": "<string>",
          "emotions": [
            "<string>"
          ]
        },
        "lmnt": {
          "voiceId": "<string>",
          "model": "<string>",
          "speed": 123,
          "conversational": true
        },
        "generic": {
          "url": "<string>",
          "headers": {},
          "body": {},
          "responseSampleRate": 123,
          "responseWordsPerMinute": 123,
          "responseMimeType": "<string>",
          "jsonAudioFieldPath": "<string>"
        }
      }
    }
  ],
  "total": 123
}

Authorizations

X-API-Key
string
header
required

API key

Query Parameters

billingStyle
enum<string>

The billing style used to filter results.

  • VOICE_BILLING_STYLE_INCLUDED - Voices with no additional charges beyond the cost of the call
  • VOICE_BILLING_STYLE_EXTERNAL - Voices with costs billed directly by the TTS provider
Available options:
VOICE_BILLING_STYLE_INCLUDED,
VOICE_BILLING_STYLE_EXTERNAL
cursor
string

The pagination cursor value.

ownership
enum<string>

The ownership used to filter results.

  • private - Only private voices
  • public - Only public voices
Available options:
private,
public
pageSize
integer

Number of results to return per page.

The search string used to filter results.

Minimum length: 1

Response

200 - application/json

The response is of type object.