Request
Bearer token with your API key
Response
Indicates whether the request was successful
Response message describing the result
Array of voice objects created by the authenticated user. Returns an empty array if no voices have been created.
Unique voice identifier (UUID format)
Display name of the voice
Voice category: "cloned" or "professional"
TTS model used by the voice: "60db Fast" or "60db Quality"
Metadata labels describing the voice attributes
ISO language code (e.g., "en", "hi", "ar", "fr", "de", "es", "it", "nl", "pl", "pt", "bn", "gu", "kn", "ml", "mr", "pa", "ta", "te")
data[].labels.language_name
Full language name (e.g., "English", "Hindi", "Arabic")
Voice gender: "male" or "female"
Voice accent: "American", "British", "Indian", or "Neutral"
Optional description of the voice. null if not provided.
Whether the voice is a native/platform-provided voice. Always false for user-created voices.
data[].available_for_tiers
Tier availability list. Currently returns an empty array for all voices.
Recommended use case categories for the voice. Possible values include: "Entertainment/TV", "IVR/Call Center", "Finance/Banking", "Conversational", "Medical/Healthcare", "Religious/Spiritual", "Corporate/Business", "Government/Public Sector", "Social Media", "Documentary", "Travel/Tourism", "Kids/Children", "Legal", "Audiobook", "Gaming", "Podcast", "Advertisement", "E-Learning", "News/Journalism", "Sports", "Animation", "Professional Cloning"
curl https://api.60db.ai/myvoices \
-H "Authorization: Bearer your-api-key"
{
"success": true,
"message": "User voices fetched successfully",
"data": [
{
"voice_id": "7c32dd99-d61d-493b-9601-37e9464be6f4",
"name": "myvoice",
"model": "60db Fast",
"labels": {
"language": "en",
"language_name": "English",
"gender": "male",
"accent": "Indian"
},
"description": "this is my voice",
"categories": [
"Entertainment/TV"
]
},
{
"voice_id": "b859ebca-f7e9-4fc0-a934-2b32ded9a4c4",
"name": "Monika - Natural and Calm",
"model": "60db Quality",
"labels": {
"language": "en",
"language_name": "English",
"gender": "female",
"accent": "Indian"
},
"description": null,
"categories": [
"Professional Cloning",
"Entertainment/TV",
"IVR/Call Center",
"Corporate/Business",
"Social Media",
"Documentary",
"Medical/Healthcare"
]
}
]
}