OpenapiV1AnalyticsObjections
Get objection analytics
Alpha API - This endpoint is in active development. Schema may change without notice.
Retrieve objection frequency and handling quality metrics aggregated from AI call analyses.
Includes:
- Objection category with occurrence count
- Average handling score per category
- Win rate when each objection type appears
Use Cases:
- Sales training prioritization
- Objection handling improvement tracking
- Product/pricing feedback from sales conversations
Query Parameters
start_date?string
ISO 8601 start date (defaults to all time)
end_date?string
ISO 8601 end date (defaults to now)
Response Body
application/json
application/json
application/json
curl -X GET "https://api.aura-app.ai/v1/analytics/objections"{
"success": true,
"data": [
{
"category": "price",
"count": 23,
"avg_handling_score": 65.5,
"win_rate": 0.35
}
]
}{
"success": false,
"error": "Failed to fetch analytics",
"code": "DATABASE_ERROR",
"requestId": "req_abc123"
}{
"success": false,
"error": "Failed to fetch analytics",
"code": "DATABASE_ERROR",
"requestId": "req_abc123"
}