Skip to main content
Version: Latest

Create Voice Clone

Create a voice clone using audio.


1. API endpoint

POST https://app.aistudios.com/api/odin/v3/avatars/voiceclone

2. Request parameter

keydesctyperequireddefault
urlAudio URLStringtrue-
nameName of the voice cloneStringtrue-
genderGender of the voice cloneString enum (MALE, FEMALE)true-
localeLanguage of the sample voice for the voice cloneString enum (en, ko, zh)falseen

3. Response parameters

keydesctype
voiceIdID of the created voice cloneString

4. Sample Request

curl https://app.aistudios.com/api/odin/v3/avatars/voiceclone  \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X POST \
-d '{
"url": "https://cdn-studio.aistudios.com/sample/tts/deepbrainai/en/M000351175.mp3",
"name": "이안",
"gender": "MALE"
}'