GET
/
sound_clone
/
api
/
v1
/
voices
curl --location 'https://api.myvocal.ai/sound_clone/api/v1/voices' \
--header 'accessKey: ffccfa079cd74c00963a2d65d38ef462'
{
    "code": 1,
    "message": "Success",
    "data": [
        {
            "id": "7789",
            "name": "FirstClonedVoice",
            "type": "cloned",
            "feature": "text-to-speech",
            "channel": "web"
        }
    ]
}
accessKey
string
required

You can copy your api-key on https://www.myvocal.ai/profile after you have subscribed to Pro or Business Plan.

Response

code
number
required

Indicates whether the call was successful. 1 if successful.

message
string

When an exception occurs, specific exception information will be provided in the message.

data
object

Includes specific data.

curl --location 'https://api.myvocal.ai/sound_clone/api/v1/voices' \
--header 'accessKey: ffccfa079cd74c00963a2d65d38ef462'
{
    "code": 1,
    "message": "Success",
    "data": [
        {
            "id": "7789",
            "name": "FirstClonedVoice",
            "type": "cloned",
            "feature": "text-to-speech",
            "channel": "web"
        }
    ]
}