Skip to main content
GET
/
voices
List Voices
curl --request GET \
  --url https://api.vogent.ai/api/voices \
  --header 'Authorization: Bearer <token>'
{
  "voices": [
    {
      "id": "<string>",
      "name": "<string>",
      "voiceType": "<string>",
      "voiceTier": "STANDARD",
      "description": "<string>"
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

In the form Bearer <api_key_here>. You can find your api key in your dashboard.

Query Parameters

name
string

Filter voices by name.

voiceType
string

The provider (for third party voices), or model type (for Vogent hosted voices).

limit
integer

The maximum number of voices to return.

cursor
string

The pagination cursor returned by the previous request. Feed the result provided by vogent verbatim.

Response

Successful operation

voices
object[]
required
cursor
string | null
required

A cursor you can pass to /voices to fetch the next page. If no next page exists, the cursor will be null.

I