Complete REST API
Endpoints for managing users, departments, calls, appointments, and much more.
Complete REST API and WebSocket documentation for integrating with the Voki v4.0 platform
The Voki API allows you to integrate and automate all features of the video call platform. Built on Elixir/Phoenix, the API provides:
https://voki.avanter.com.br/api/All responses follow this pattern:
Success (object)
{
"data": {
"id": "uuid",
"field": "value"
}
}Success (paginated list)
{
"data": [...],
"meta": {
"current_page": 1,
"page_size": 20,
"total_pages": 5,
"total_count": 100
}
}Validation error
{
"errors": {
"email": ["can't be blank"],
"name": ["must be at least 2 characters"]
}
}Generic error
{
"errors": {
"detail": "Unauthorized"
}
}| Endpoint | Limit |
|---|---|
/api/auth/* | 5 requests/minute |
| Public endpoints | 30 requests/minute |
| Authenticated endpoints | No explicit limit |