- 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 all voices for the user and global presets
- POSTRegister an existing Cartesia voice
- POSTClone a new voice
- POSTLocalize an existing voice
- DELDelete a user's voice record and from Cartesia if applicable
- POSTUpload an assistant profile photo
- POST
- Logging
- Account
Assistants
List all recordings for an assistant
GET
/
v0
/
assistant
/
{assistant_id}
/
recordings
Copy
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
{
"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
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
{
"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
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
{
"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.