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/voices

Example

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"]
    }
  ]
}
FieldTypeDescription
idstringVoice id to pass as voice.
namestringHuman-readable display name.
languagesstring[]Languages the voice supports.
stylesstring[]Delivery styles available for the voice.