API Documentation
Prospects
Agents
VoiceModels
Hive
HiveAgentLink
Actions
ActionAgentLink
Products
Conversations
ConversationProspectLink
VoiceModels
Get list of voices available for calls
Get list of voices available for calls
GET
/
v1
/
voice-models
Copy
curl --request GET \
--url https://api.trata.ai/v1/voice-models \
--header 'Authorization: Bearer <token>'
Copy
[
{
"voice": {
"gender": "Male",
"languageAccent": {
"language": "English",
"accent": "American"
},
"modelId": "<string>"
},
"previewUrl": "<string>",
"name": "<string>",
"voiceDescription": "<string>"
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Successful Response
The response is of type VoiceModel · object[]
.
Copy
curl --request GET \
--url https://api.trata.ai/v1/voice-models \
--header 'Authorization: Bearer <token>'
Copy
[
{
"voice": {
"gender": "Male",
"languageAccent": {
"language": "English",
"accent": "American"
},
"modelId": "<string>"
},
"previewUrl": "<string>",
"name": "<string>",
"voiceDescription": "<string>"
}
]
Assistant
Responses are generated using AI and may contain mistakes.