v1

latestOpenAPI 3.1.02026-07-263788129.7 KB
Opportunities

Get an Opportunity

Gets a single opportunity by its opportunity_id. The detail response includes the AI-generated summary, identified risks, and custom fields.

get/v1/opportunities/{opportunity_id}

Path parameters

opportunity_idstring uuid required

Response

Successful Response

Example response

{
  "data": {
    "id": "opp_abc123",
    "account_id": "acc_def456",
    "name": "Acme Corp - Enterprise License",
    "owner": {
      "id": "usr_abc123",
      "first_name": "Jane",
      "last_name": "Smith"
    },
    "stage": "negotiation",
    "estimated_value": {
      "currency_code": "USD",
      "amount": 5000000
    },
    "estimated_close_date": "2025-09-30",
    "actual_close_date": "2025-10-15",
    "summary": "Enterprise deal with strong champion. Procurement review in progress.",
    "risks": [
      "Budget constraints",
      "Competing vendor evaluation"
    ],
    "notes": "Follow up after Q3 board meeting",
    "tags": [
      "High Priority"
    ],
    "last_activity_at": "2025-08-20T14:30:00Z",
    "updated_at": "2025-08-21T14:30:00Z",
    "created_at": "2025-06-01T09:00:00Z"
  }
}