Retrieve the full catalog of voices available for AI calls. The list includes voices from Cartesia and ElevenLabs, each with a name, language, accent, and provider-specific ID. Use this endpoint to browse voices before assigning one to an assistant or a call.
Returns
Get voices
import os
from revox import Revox
client = Revox(
api_key=os.environ.get("REVOX_API_KEY"), # This is the default and can be omitted
)
voices = client.voices.list()
print(voices.voices){
"voices": [
{
"id": "x",
"description": "description",
"language": "en",
"name": "name",
"provider": "cartesia"
}
]
}Returns Examples
{
"voices": [
{
"id": "x",
"description": "description",
"language": "en",
"name": "name",
"provider": "cartesia"
}
]
}