OpenapiV1AnalyticsDashboard
Get dashboard analytics
Alpha API - This endpoint is in active development. Schema may change without notice.
Retrieve dashboard-level KPIs and performance metrics for a date range.
Includes:
- Total calls, shows, and closes
- Show rate and close rate
- Total revenue and cash collected
- Per-closer performance breakdown
Use Cases:
- External dashboards displaying key metrics
- Commission platforms calculating team performance
- Reporting tools aggregating sales data
Query Parameters
start_date?string
ISO 8601 start date (defaults to all time)
end_date?string
ISO 8601 end date (defaults to now)
product_id?string
Filter by product ID
Response Body
application/json
application/json
application/json
curl -X GET "https://api.aura-app.ai/v1/analytics/dashboard"{
"data": {
"cash_collected": 95000,
"close_rate": 32.87,
"currency": "USD",
"rep_performance": [
{
"call_count": 25,
"close_rate": 40,
"closer_id": "user_2abc123xyz",
"closer_name": "John Smith",
"closes": 8,
"revenue": 25000.5,
"show_rate": 80,
"shows": 20
}
],
"show_rate": 49.03,
"total_calls": 150,
"total_closes": 48,
"total_revenue": 120000.5,
"total_shows": 120
},
"success": true
}{
"code": "DATABASE_ERROR",
"error": "Failed to fetch analytics",
"requestId": "req_abc123",
"success": false
}{
"code": "DATABASE_ERROR",
"error": "Failed to fetch analytics",
"requestId": "req_abc123",
"success": false
}