Calls
Intelligence
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Vector Knowledge Bases
Blocked Numbers
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Account
Organizations
- POSTCreate Organization
- DELDelete Organization
- GETGet Organization
- GETGet Organization Members
- GETGet Organization's Current Service Version
- GETList Organization's Service Versions
- PATCHUpdate Organization's Service Version
- PATCHUpdate Organization Members
- PATCHUpdate Organization Member Permissions
- PATCHUpdate Organization Properties
- GETGet User Organization Memberships
- DELLeave Organization
- GETGet Organization Billing Information
- GETGet Organization Billing Refill Information
SMS
Voices
Clone a Voice
Clone a voice from audio samples.
POST
/
v1
/
voices
Copy
Ask AI
curl --request POST \
--url https://api.bland.ai/v1/voices \
--header 'Content-Type: multipart/form-data' \
--header 'authorization: <authorization>' \
--form 'name=<string>' \
--form 'audio_samples=[
null
]'
Copy
Ask AI
{
"voice_id": 12345,
"name": "My Custom Voice"
}
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.
Copy
Ask AI
{
"voice_id": 12345,
"name": "My Custom Voice"
}
Copy
Ask AI
curl --request POST \
--url https://api.bland.ai/v1/voices \
--header 'Content-Type: multipart/form-data' \
--header 'authorization: <authorization>' \
--form 'name=<string>' \
--form 'audio_samples=[
null
]'
Copy
Ask AI
{
"voice_id": 12345,
"name": "My Custom Voice"
}
Assistant
Responses are generated using AI and may contain mistakes.