GET /voices
List the voices available to your project.
Returns the voices your project can use with POST /speech
and the Realtime API.
GET /v1/voicesExample
curl https://api.vocenza.com/v1/voices \
-H "Authorization: Bearer $VOCENZA_API_KEY"Response
{
"data": [
{
"id": "aria",
"name": "Aria",
"gender": "female",
"languages": ["en", "es", "de"],
"styles": ["neutral", "cheerful", "calm"]
},
{
"id": "atlas",
"name": "Atlas",
"gender": "male",
"languages": ["en"],
"styles": ["neutral", "narration"]
}
]
}| Field | Type | Description |
|---|---|---|
id | string | Voice id to pass as voice. |
name | string | Human-readable display name. |
languages | string[] | Languages the voice supports. |
styles | string[] | Delivery styles available for the voice. |