Voices
Get Voices
Get All voices
GET
/
v1
/
voices
curl --request GET \
--url https://api.aicaller.io/v1/voices \
--header 'aicaller-api-key: <api-key>'
{
"data": [
{
"id": 1,
"voiceSampleUrl": "https://example.com/voice-sample.mp3",
"voiceName": "Rose",
"gender": "Female",
"isRecommended": true
},
{
"id": 2,
"voiceSampleUrl": "https://example.com/voice-sample2.mp3",
"voiceName": "John",
"gender": "male",
"isRecommended": false
}
]
}
Authorizations
Response
200
application/json
Voices found.
The response is of type object
.
curl --request GET \
--url https://api.aicaller.io/v1/voices \
--header 'aicaller-api-key: <api-key>'
{
"data": [
{
"id": 1,
"voiceSampleUrl": "https://example.com/voice-sample.mp3",
"voiceName": "Rose",
"gender": "Female",
"isRecommended": true
},
{
"id": 2,
"voiceSampleUrl": "https://example.com/voice-sample2.mp3",
"voiceName": "John",
"gender": "male",
"isRecommended": false
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.