Aura Logo
AuraAPI Docs
OpenapiV1OpportunitiesId

Get opportunity by ID

Retrieve a single opportunity by ID (the underlying booking call's ID).

Response includes:

  • Derived pipeline stage and raw call outcome status
  • Embedded lead summary (id, name, email)
  • Expected deal value and actual won value from the linked sale
  • Scheduling and close timestamps
GET
/v1/opportunities/{id}

Path Parameters

idstring

Opportunity ID (UUID — the booking call's ID)

Formatuuid

Response Body

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/opportunities/550e8400-e29b-41d4-a716-446655440000"
{
  "data": {
    "actual_value": 4500,
    "booking_link_id": "10db7c95-ea79-4283-b354-cac06c940a80",
    "call_status": "closed",
    "closed_at": "string",
    "created_at": "string",
    "expected_deal_value": 5000,
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "lead": {
      "email": "jane@example.com",
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "name": "Jane Doe"
    },
    "lead_id": "9bddab70-98e6-43a9-8f32-c9788b9de0c0",
    "scheduled_at": "2026-07-01T15:00:00.000Z",
    "stage": "booked",
    "updated_at": "string"
  },
  "success": true
}
{
  "code": "NOT_FOUND",
  "error": "Lead not found",
  "requestId": "req_abc123",
  "success": false
}