GET
/
api
/
v1
/
available-voices
Get available voices
curl --request GET \
  --url https://prod.featherhq.com/api/v1/available-voices \
  --header 'X-API-Key: <api-key>'
{
  "voices": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "voiceId": "<string>",
      "voiceSampleUrl": "<string>",
      "photoUrl": "<string>",
      "provider": "DEEPGRAM",
      "model": "<string>",
      "gender": "MALE",
      "languages": "<string>",
      "accent": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Query Parameters

provider
enum<string>
Available options:
DEEPGRAM,
CARTESIA,
AMAZON,
ELEVEN_LABS,
PLAY_HT,
RIME,
OPENAI,
INWORLD
model
string

Response

200
application/json

Available voices retrieved successfully

The response is of type object.