Skip to main content
POST
/
v1
/
custom-voices
/
cloned-voice
cURL
curl -X POST "http://api.apne2.stg.sup.band/v1/custom-voices/cloned-voice" \
  -H "x-sup-api-key: <api-key>" \
  -F "files=@<audio-file>.wav;type=audio/wav" \
  -F "name=<voice-name>"
{
  "voice_id": "voice_123456789"
}

Endpoint

https://supertoneapi.com/v1/custom-voices/cloned-voice

Request Body Field Descriptions

FieldRequiredDescription
filesYesAudio file(s) to be used for voice cloning
nameYesName of the voice
descriptionNoDescription of the voice

Notes

  • files must be WAV or MP3 files under 3MB.
  • name cannot exceed 100 characters.
  • The voice cloning registration feature via API is not available for Free tier users.

Authorizations

x-sup-api-key
string
header
required

Body

multipart/form-data

Audio file and voice metadata

files
file
required

Audio file to clone voice from (WAV/MP3 format, max 3MB)

name
string
required

Name of the cloned voice

description
string

Description of the cloned voice

Response

Successfully created cloned voice

voice_id
string
required

Unique identifier for the created voice

Example:

"voice_123456789"