## List **get** `/voices` 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 - `voices: array of object { id, description, language, 2 more }` - `id: string` The ID of the voice. - `description: string` The description of the voice. - `language: "en" or "fr" or "es" or 5 more` The language of the voice. - `"en"` - `"fr"` - `"es"` - `"de"` - `"it"` - `"pt"` - `"ru"` - `"zh"` - `name: string` The name of the voice. - `provider: "cartesia" or "elevenlabs"` The provider of the voice. - `"cartesia"` - `"elevenlabs"` ### Example ```http curl https://www.getrevox.com/api/voices \ -H "Authorization: Bearer $REVOX_API_KEY" ```