Skip to main content
GET
/
agent
/
voices
List available voices
curl --request GET \
  --url https://api.vocobase.com/api/v2/agent/voices \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "voices": [
      {
        "id": "a0e99841-438c-4a64-b679-ae501e7d6091",
        "name": "Sarah",
        "description": "A warm, professional female voice.",
        "language": "English",
        "gender": "female"
      }
    ],
    "allowed_languages": [
      "en",
      "hi",
      "es"
    ]
  }
}

Authorizations

Authorization
string
header
required

API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.

Query Parameters

language
string

Filter voices by language code (e.g., en, hi). Case-insensitive partial match.

Response

List of voices.

success
boolean
data
object