Aura Logo
AuraAPI Docs
OpenapiV1CallsId

Get call by ID

Retrieve detailed information about a specific call.

Response includes:

  • Call scheduling and timing details
  • Outcome and status
  • Associated lead, closer, product
  • Payment linkage
GET
/v1/calls/{id}

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"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "organization_id": "org_2abc123xyz",
    "lead_id": "650e8400-e29b-41d4-a716-446655440001",
    "closer_id": "750e8400-e29b-41d4-a716-446655440002",
    "booking_link_id": "850e8400-e29b-41d4-a716-446655440003",
    "product_id": "950e8400-e29b-41d4-a716-446655440004",
    "scheduled_at": "2026-01-20T15:00:00Z",
    "started_at": "2019-08-24T14:15:22Z",
    "ended_at": "2019-08-24T14:15:22Z",
    "duration_minutes": 45,
    "outcome": "closed",
    "conferencing_link": "https://zoom.us/j/123456789",
    "expected_deal_value": 500000,
    "linked_payment_id": "403ebef4-39b7-43a9-8633-c107cae8737a",
    "created_at": "2026-01-17T08:00:00Z",
    "updated_at": "2026-01-17T09:30:00Z"
  }
}
{
  "success": false,
  "error": "Lead not found",
  "code": "NOT_FOUND",
  "requestId": "req_abc123"
}