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"
}

엔드포인트

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

요청 본문 필드 설명

FieldRequiredDescription
filesYes보이스 클로닝에 사용할 오디오 파일입니다.
nameYes보이스의 이름입니다.
descriptionNo보이스에 대한 설명입니다.

참고 사항

  • files는 3MB 이하의 WAV 또는 MP3 파일이어야 합니다.
  • name은 100자를 초과할 수 없습니다.
  • API를 통한 보이스 클로닝 등록 기능은 Free 요금제 사용자에게 제공되지 않습니다.

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"