POST
/
api
/
clone_voice
curl --location 'https://raijin.personate.ai/api/clone_voice' \
--header 'Content-Type: application/json' \
--header 'Authorization': 'Bearer ********' \
--data '{
  "audio_url": "https://URL.wav",
  "voice_name": "",
  "tag": ""
}'
{
  "voice_id": "",
  "voice_name": ""
}

Body

audio_url
string
required
Audio URL to clone, minimum 1 minute in duration
voice_name
string
required
Name of the voice clone
tag
string
Tag of the voice clone

Response

voice_id
string
Voice id
voice_name
object
Voice name
curl --location 'https://raijin.personate.ai/api/clone_voice' \
--header 'Content-Type: application/json' \
--header 'Authorization': 'Bearer ********' \
--data '{
  "audio_url": "https://URL.wav",
  "voice_name": "",
  "tag": ""
}'
{
  "voice_id": "",
  "voice_name": ""
}