Skip to main content
GET
/
myvoices
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"
      ]
    }
  ]
}

Request

Headers

Authorization
string
required
Bearer token with your API key

Response

success
boolean
Indicates whether the request was successful
message
string
Response message describing the result
data
array
Array of voice objects created by the authenticated user. Returns an empty array if no voices have been created.
data[].voice_id
string
Unique voice identifier (UUID format)
data[].name
string
Display name of the voice
data[].category
string
Voice category: "cloned" or "professional"
data[].model
string
TTS model used by the voice: "60db Fast" or "60db Quality"
data[].labels
object
Metadata labels describing the voice attributes
data[].labels.language
string
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
string
Full language name (e.g., "English", "Hindi", "Arabic")
data[].labels.gender
string
Voice gender: "male" or "female"
data[].labels.accent
string
Voice accent: "American", "British", "Indian", or "Neutral"
data[].description
string | null
Optional description of the voice. null if not provided.
data[].is_native
boolean
Whether the voice is a native/platform-provided voice. Always false for user-created voices.
data[].available_for_tiers
array
Tier availability list. Currently returns an empty array for all voices.
data[].categories
array
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"
      ]
    }
  ]
}