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>"
}
]
}
Get all 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>"
}
]
}
DEEPGRAM
, CARTESIA
, AMAZON
, ELEVEN_LABS
, PLAY_HT
, RIME
, OPENAI
, INWORLD
Available voices retrieved successfully
The response is of type object
.