- Universal API
- Supported Endpoints
- LLM Queries
- Usage
- Custom Endpoints
- Custom API keys
- Endpoint Metrics
- Assistants
- GETList all assistants
- POSTCreate a new assistant
- DELDelete an assistant
- PATCHUpdate assistant configuration
- POSTAdd a call recording for an assistant
- GETList all recordings for an assistant
- DELDelete a recording
- GETList all assistant voices for the user.
- POSTCreate a new voice record
- Delete a user's voice record
- GET
- Logging
- Account
Assistants
List all assistant voices for the user.
GET
/
v0
/
assistant
/
voice
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/voice' \
--header "Authorization: Bearer $UNIFY_KEY"
{
"info": [
{
"voice_id": "bf0a246a-8642-498a-9950-80c35e9276b5",
"name": "English Woman Calm 1",
"description": "Calm and relaxting voice of an english-speaking woman",
"gender": "female",
"language": "en"
},
{
"voice_id": "c99d36f3-5ffd-4253-803a-535c1bc9c306",
"name": "English Male Deep 1",
"description": "A deep, smoooth British man's voice perfect for narration.",
"gender": "male",
"language": "en"
}
]
}
Returns a list of all assistant voices created available for the user.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/voice' \
--header "Authorization: Bearer $UNIFY_KEY"
{
"info": [
{
"voice_id": "bf0a246a-8642-498a-9950-80c35e9276b5",
"name": "English Woman Calm 1",
"description": "Calm and relaxting voice of an english-speaking woman",
"gender": "female",
"language": "en"
},
{
"voice_id": "c99d36f3-5ffd-4253-803a-535c1bc9c306",
"name": "English Male Deep 1",
"description": "A deep, smoooth British man's voice perfect for narration.",
"gender": "male",
"language": "en"
}
]
}
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/voice' \
--header "Authorization: Bearer $UNIFY_KEY"
{
"info": [
{
"voice_id": "bf0a246a-8642-498a-9950-80c35e9276b5",
"name": "English Woman Calm 1",
"description": "Calm and relaxting voice of an english-speaking woman",
"gender": "female",
"language": "en"
},
{
"voice_id": "c99d36f3-5ffd-4253-803a-535c1bc9c306",
"name": "English Male Deep 1",
"description": "A deep, smoooth British man's voice perfect for narration.",
"gender": "male",
"language": "en"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.