- Universal API
- Supported Endpoints
- LLM Queries
- Usage
- Custom Endpoints
- Custom API keys
- Endpoint Metrics
- Assistants
- POSTCreate a new assistant
- GETList all assistants
- DELDelete an assistant
- PATCHUpdate assistant configuration
- POSTAdd a call recording for an assistant
- GETList all recordings for an assistant
- DELDelete a recording
- GETList voices
- POSTRegister voice
- POSTClone voice
- DELDelete voice
- POSTGenerate speech from text
- POSTDesign Voice Previews
- POSTCreate Voice from Design Preview
- POSTUpload photo
- POSTGenerate photo
- POSTEdit photo
- POSTAnimate photo
- POST
- Logging
- Account
Assistants
List all recordings for an assistant
GET
/
v0
/
assistant
/
{assistant_id}
/
recordings
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
{
"info": [
{
"id": 123,
"url": "https://storage.example.com/recordings/call_123.mp3",
"created_at": "2025-05-08T14:30:00Z"
},
{
"id": 124,
"url": "https://storage.example.com/recordings/call_124.mp3",
"created_at": "2025-05-09T10:15:00Z"
}
]
}
Returns a list of all call recordings for the specified assistant.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
{
"info": [
{
"id": 123,
"url": "https://storage.example.com/recordings/call_123.mp3",
"created_at": "2025-05-08T14:30:00Z"
},
{
"id": 124,
"url": "https://storage.example.com/recordings/call_124.mp3",
"created_at": "2025-05-09T10:15:00Z"
}
]
}
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
{
"info": [
{
"id": 123,
"url": "https://storage.example.com/recordings/call_123.mp3",
"created_at": "2025-05-08T14:30:00Z"
},
{
"id": 124,
"url": "https://storage.example.com/recordings/call_124.mp3",
"created_at": "2025-05-09T10:15:00Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.