Skip to main content
GET
/
sound_clone
/
api
/
v1
/
voices
curl --location 'https://api.myvocal.ai/sound_clone/api/v1/voices' \
--header 'accessKey: <your_api_key>'
{
  "code": 1,
  "message": "Success",
  "data": [
    {
      "id": "7789",
      "name": "FirstClonedVoice",
      "type": "cloned",
      "feature": "text-to-speech",
      "channel": "web",
      "fileCount": 2,
      "totalFileSize": 582944
    }
  ]
}
accessKey
string
required
API key for authentication.

Response

code
number
required
1 for success.
message
string
Backend message for success or failure context.
data
array
Voice objects available under the current API key.
GET /voices does not return per-voice supportedModels. Do not rely on this endpoint alone to decide whether a voice is guaranteed to work with myvocal_v3.
curl --location 'https://api.myvocal.ai/sound_clone/api/v1/voices' \
--header 'accessKey: <your_api_key>'
{
  "code": 1,
  "message": "Success",
  "data": [
    {
      "id": "7789",
      "name": "FirstClonedVoice",
      "type": "cloned",
      "feature": "text-to-speech",
      "channel": "web",
      "fileCount": 2,
      "totalFileSize": 582944
    }
  ]
}