OpenapiV1TeamPerformance
Get team performance summary
Alpha API - This endpoint is in active development. Schema may change without notice.
Retrieve aggregated performance metrics for your team over a rolling period.
Includes:
- Overall scores, close rates, and show rates
- Verdict distribution (hire/retain/replace)
- Weakest and strongest call journey stages
- Top loss reasons (objection categories)
- Per-closer performance breakdown
Use Cases:
- Commission dashboards showing team leaderboard
- Manager views with per-rep performance
- Trend analysis across time periods
Query Parameters
days?string
Rolling window in days (1-365, default: 90)
Default
"90"Response Body
application/json
application/json
application/json
curl -X GET "https://api.aura-app.ai/v1/team/performance"{
"data": {
"avg_overall_score": 75.2,
"close_rate": 32,
"per_closer": [
{
"avg_overall_score": 78.5,
"call_count": 25,
"close_rate": 35,
"closer_id": "user_2abc123xyz",
"closer_name": "John Smith",
"revenue": 0,
"show_rate": null
}
],
"period_days": 90,
"show_rate": null,
"strongest_stage": "discovery",
"top_loss_reasons": [
{
"count": 5,
"objection": "price"
}
],
"total_calls": 150,
"verdict_distribution": {
"property1": 0,
"property2": 0
},
"weakest_stage": "closing"
},
"success": true
}{
"code": "NOT_FOUND",
"error": "Lead not found",
"requestId": "req_abc123",
"success": false
}{
"code": "NOT_FOUND",
"error": "Lead not found",
"requestId": "req_abc123",
"success": false
}