List the voices you can use
Lists the voices a Call Agent can be set to speak in, for one speech provider. Put a voice's provider and id into a Call Agent's voices list to let its calls speak in that voice. The provider defaults to cartesia; both cartesia and fish are supported.
Query Parameters
- Type: enumprovider
The speech provider to list voices for — cartesia (the default) or fish.
A speech provider — the service that turns the agent's words into spoken audio.
("TTS" is text to speech.) Resia offers Cartesia and Fish.
Responses
- application/json
- application/json
Request Example for get/v1/available-voices
curl '/v1/available-voices?provider=cartesia' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"voices": [
{
"id": "string",
"provider": "cartesia",
"name": "string",
"description": "string",
"language": "string",
"gender": "Unknown"
}
]
}
