Voices
List Voices
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
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
SMS
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
Voices
List Voices
Retrieves all available voices for your account.
GET
/
v1
/
voices
curl --request GET \
--url https://api.bland.ai/v1/voices \
--header 'authorization: <authorization>'
{
"voices": [
{
"id": "2f9fdbc7-4bf2-4792-8a18-21ce3c93978f",
"name": "maya",
"description": "Young American Female",
"public": true,
"tags": [
"english",
"soft",
"Bland Curated"
]
},
{
"id": "37b3f1c8-a01e-4d70-b251-294733f08371",
"name": "ryan",
"description": "Professional American Male",
"public": true,
"tags": [
"english",
"Bland Curated"
]
},
{
"id": "90295ec4-f0fe-4783-ab33-8b997ddc3ae4",
"name": "mason",
"description": "American Male",
"public": true,
"tags": [
"english",
"Bland Curated"
]
},
{
"id": "bbeabae6-ec8d-444f-92ad-c8e620d3de8d",
"name": "tina",
"description": "Gentle American Female",
"public": true,
"tags": [
"english",
"gentle"
]
},
//...
]
}
Headers
Your API key for authentication.
Response
Contains a list of the voices available for your account.
The unique identifier for the voice.
The name of the voice. This value can also be used in the voice
parameter when sending calls.
A brief description of the voice.
Indicates whether the voice is publicly available or specific to your account.
A list of tags that describe the voice. We recommend “Bland Curated” voices for the best quality over the phone.
The number of ratings the voice has received.
The average rating of the voice, out of 5.
Note: Ratings are under development at this time and may display incomplete/inaccurate data.
{
"voices": [
{
"id": "2f9fdbc7-4bf2-4792-8a18-21ce3c93978f",
"name": "maya",
"description": "Young American Female",
"public": true,
"tags": [
"english",
"soft",
"Bland Curated"
]
},
{
"id": "37b3f1c8-a01e-4d70-b251-294733f08371",
"name": "ryan",
"description": "Professional American Male",
"public": true,
"tags": [
"english",
"Bland Curated"
]
},
{
"id": "90295ec4-f0fe-4783-ab33-8b997ddc3ae4",
"name": "mason",
"description": "American Male",
"public": true,
"tags": [
"english",
"Bland Curated"
]
},
{
"id": "bbeabae6-ec8d-444f-92ad-c8e620d3de8d",
"name": "tina",
"description": "Gentle American Female",
"public": true,
"tags": [
"english",
"gentle"
]
},
//...
]
}
curl --request GET \
--url https://api.bland.ai/v1/voices \
--header 'authorization: <authorization>'
{
"voices": [
{
"id": "2f9fdbc7-4bf2-4792-8a18-21ce3c93978f",
"name": "maya",
"description": "Young American Female",
"public": true,
"tags": [
"english",
"soft",
"Bland Curated"
]
},
{
"id": "37b3f1c8-a01e-4d70-b251-294733f08371",
"name": "ryan",
"description": "Professional American Male",
"public": true,
"tags": [
"english",
"Bland Curated"
]
},
{
"id": "90295ec4-f0fe-4783-ab33-8b997ddc3ae4",
"name": "mason",
"description": "American Male",
"public": true,
"tags": [
"english",
"Bland Curated"
]
},
{
"id": "bbeabae6-ec8d-444f-92ad-c8e620d3de8d",
"name": "tina",
"description": "Gentle American Female",
"public": true,
"tags": [
"english",
"gentle"
]
},
//...
]
}