POST
/
voices
/
clone
Clone Voice
curl --request POST \
  --url https://api.vogent.ai/api/voices/clone \
  --header 'Content-Type: multipart/form-data' \
  --form 'name=<string>' \
  --form model=CARTESIA \
  --form 'transcription=<string>' \
  --form clip=@example-file
{
  "id": "<string>",
  "name": "<string>"
}

Body

multipart/form-data
name
string
required

The name of the cloned voice.

clip
file
required

The audio clip to use for cloning.

model
enum<string>
required
Available options:
CARTESIA,
CSM
transcription
string

Optional transcription of the audio clip.

Response

Successful operation

id
string
required
name
string
required