Headers
Your API key for authentication.
Body
The name to identify your cloned voice.
One or more audio files to use as samples for voice cloning.
Response
The unique identifier for the cloned voice.
The name you provided for the voice.
curl --request POST \
--url https://api.bland.ai/v1/voices/clone \
--header 'Content-Type: multipart/form-data' \
--header 'authorization: <authorization>' \
--form 'name=<string>'
{
"voice_id": 12345,
"name": "My Custom Voice"
}
Clone a voice from audio samples.
curl --request POST \
--url https://api.bland.ai/v1/voices/clone \
--header 'Content-Type: multipart/form-data' \
--header 'authorization: <authorization>' \
--form 'name=<string>'
{
"voice_id": 12345,
"name": "My Custom Voice"
}
{
"voice_id": 12345,
"name": "My Custom Voice"
}
Was this page helpful?