POST
/
v0
/
assistant
/
voice
/
clone
curl --request POST \
  --url 'https://api.unify.ai/v0/assistant/voice/clone' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: multipart/form-data' \
  --form 'file=@/path/to/your/file.ext'
{
    "info": "object"
}

Clones a new voice using an audio file, registers it with Cartesia, and saves it to the database.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

name
string
required
language
string
required
description
string | null
file
binary
required
curl --request POST \
  --url 'https://api.unify.ai/v0/assistant/voice/clone' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: multipart/form-data' \
  --form 'file=@/path/to/your/file.ext'
{
    "info": "object"
}