Aura Logo
AuraAPI Docs
OpenapiV1CallsIdAnalysis

Get call analysis

Retrieve the AI-generated analysis for a specific call.

Response includes:

  • Overall, closing, emotional, and structure scores
  • Buyer certainty index
  • Detected objections with quotes and handling scores
  • Key moments with timestamps
  • Call journey breakdown (discovery → pitch → close)
  • Coaching feedback and action plans
  • AI verdict (hire, retain, replace)

Analysis is only available for completed calls that have been processed.

GET
/v1/calls/{id}/analysis

Path Parameters

idstring

Call ID (UUID)

Formatuuid

Response Body

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/calls/550e8400-e29b-41d4-a716-446655440000/analysis"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "call_id": "0d0a16ab-a508-4d58-bf24-5dc3cb248f3e",
    "overall_score": 78,
    "closing_score": 65,
    "emotional_score": 82,
    "structure_score": 71,
    "buyer_certainty_index": 55,
    "status": "closed",
    "verdict": "retain",
    "confidence": 0.87,
    "reasoning": "string",
    "primary_objection": "price",
    "objections_detected": [
      {
        "category": "price",
        "confidence": 0.92,
        "quote": "That's a bit more than we budgeted for this quarter",
        "handling_score": 75,
        "handling_feedback": "Good reframe to value but missed opportunity to anchor to ROI"
      }
    ],
    "key_moments": [
      {
        "timestamp": "12:34",
        "type": "objection",
        "description": "Lead raised concern about implementation timeline",
        "score": 65
      }
    ],
    "call_journey": null,
    "quick_insights": null,
    "coaching_data": null,
    "metrics": null,
    "analyzed_at": "2026-01-17T10:00:00Z"
  }
}
{
  "success": false,
  "error": "Call analysis not found",
  "code": "NOT_FOUND"
}