analytics
Get Dashboard Analytics
Get comprehensive analytics for tenant dashboard.
This is the main endpoint for dashboard rendering. Returns all metrics in one response:
- Real-time metrics
- Call statistics
- Capacity metrics
- Per-agent performance
Use this endpoint to populate the main dashboard view.
Example Response:
{
"tenant_id": "...",
"generated_at": "2025-12-04T10:00:00Z",
"period_hours": 24,
"real_time": {
"active_calls": 5,
"active_participants": 10,
"active_agents": 5
},
"call_statistics": {
"total_calls": 150,
"success_rate": 95.5,
"avg_duration_seconds": 180
},
"capacity": {
"current_active_calls": 5,
"total_capacity": 50,
"utilization_percentage": 10.0
},
"agents": [
{
"agent_id": "...",
"agent_name": "Customer Support Agent",
"calls": {...},
"tools": {...}
}
]
}
GET
Get Dashboard Analytics
Documentation Index
Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Time period in hours (1-168)
Required range:
1 <= x <= 168Response
Successful Response
Complete dashboard analytics.
Get Dashboard Analytics