Skip to main content

Request

organization_id
integer
required
Your organization ID
api_key
string
required
Your organization API key
language
string
Filter voices by language code (e.g., “en”, “es”, “hi”)
gender
string
Filter voices by gender (male, female)

Examples

curl -X GET 'https://www.tabbly.io/dashboard/agents/endpoints/get-voices?organization_id=244&api_key=your_api_key&language=en' \
-H 'Content-Type: application/json'

Response

success
boolean
Indicates if the request was successful
voices
array
Array of voice objects
total
integer
Total number of voices available

Voice Object

voice_id
integer
Unique identifier for the voice
voice_name
string
Name of the voice
language
string
Language code supported by the voice
language_name
string
Full name of the language
gender
string
Gender of the voice (male, female)
accent
string
Regional accent or variant
style
string
Voice style (professional, friendly, authoritative)
preview_url
string
URL to preview the voice

Success Response (200 OK)

{
    "success": true,
    "voices": [
        {
            "voice_id": 5,
            "voice_name": "Sarah - Professional",
            "language": "en",
            "language_name": "English",
            "gender": "female",
            "accent": "US",
            "style": "professional",
            "preview_url": "https://..."
        }
    ],
    "total": 150
}

Error Responses

400
object
Missing required fields
404
object
Organization not found
500
object
Server error