curl --request POST \
--url https://supertoneapi.com/v1/custom-voices/cloned-voice \
--header 'Content-Type: multipart/form-data' \
--header 'x-sup-api-key: <api-key>' \
--form files='@example-file' \
--form 'name=<string>' \
--form 'description=<string>'{
"voice_id": "voice_123456789"
}Creates a customer registered voice by registering the cloned voice when an audio file is uploaded.
curl --request POST \
--url https://supertoneapi.com/v1/custom-voices/cloned-voice \
--header 'Content-Type: multipart/form-data' \
--header 'x-sup-api-key: <api-key>' \
--form files='@example-file' \
--form 'name=<string>' \
--form 'description=<string>'{
"voice_id": "voice_123456789"
}https://supertoneapi.com/v1/custom-voices/cloned-voice
| Field | Required | Description |
|---|---|---|
files | Yes | Audio file(s) to be used for voice cloning |
name | Yes | Name of the voice |
description | No | Description of the voice |
files must be WAV or MP3 files under 3MB.name cannot exceed 100 characters.Audio file and voice metadata
Successfully created cloned voice
Unique identifier for the created voice
"voice_123456789"