> ## Documentation Index
> Fetch the complete documentation index at: https://docs.callaidan.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Opportunity

> Return a single opportunity with its pipeline, stage, and contact resolved inline.



## OpenAPI

````yaml GET /crm/opportunities/{opportunity_id}/
openapi: 3.1.0
info:
  title: Aidan API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.callaidan.com
security: []
tags:
  - name: Webhooks
    description: >-
      **Inbound notifications.** After a voice call ends, Aidan POSTs JSON to
      the Webhook URL on your agent (Voice Agents settings or `webhook_url`).
      Your server receives these requests — they are not calls *to*
      `api.callaidan.com`. The documented path `/_reference/webhooks/...` exists
      only in this spec so the payload schema can appear in the API Reference;
      it is not callable on the production API.
paths:
  /crm/opportunities/{opportunity_id}/:
    get:
      tags:
        - crm
      summary: Get Opportunity
      description: >-
        Return a single opportunity with its pipeline, stage, and contact
        resolved inline.
      operationId: crm_opportunities_retrieve_2
      parameters:
        - in: path
          name: opportunity_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: Opportunity detail.
        '404':
          description: Opportunity not found.
      security:
        - jwtAuth: []
        - {}
components:
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````