Aura Logo
AuraAPI Docs
OpenapiV1Calls

List calls

Retrieve a paginated list of calls for your organization.

Use Cases:

  • Display calls in external dashboards
  • Track call outcomes for commission calculations
  • Export call data for analytics

Filtering:

  • Filter by outcome, lead, closer, booking link
  • Filter upcoming vs past calls
  • Results automatically scoped to your organization
GET
/v1/calls

Query Parameters

limit?string

Number of results per page (max 100)

Default"50"
cursor?string

Cursor for pagination

outcome?string

Filter by call outcome

lead_id?string

Filter by lead ID

Formatuuid
closer_id?string

Filter by closer ID

Formatuuid
booking_link_id?string

Filter by booking link ID

Formatuuid
is_upcoming?string

Filter for upcoming calls (true/false)

Response Body

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/calls"
{
  "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"
    }
  ],
  "pagination": {
    "next_cursor": "string",
    "has_more": true
  }
}
{
  "success": false,
  "error": "Lead not found",
  "code": "NOT_FOUND",
  "requestId": "req_abc123"
}