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

# List Opportunities

> List CRM opportunities for the authenticated company, ordered by score (desc, nulls last) then most-recently updated. All filters combine with AND.



## OpenAPI

````yaml GET /crm/opportunities/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /crm/opportunities/:
    get:
      tags:
        - crm
      summary: List Opportunities
      description: >-
        List CRM opportunities for the authenticated company, ordered by score
        (desc, nulls last) then most-recently updated. All filters combine with
        AND.
      operationId: crm_opportunities_retrieve
      parameters:
        - in: query
          name: contact_id
          schema:
            type: string
            format: uuid
        - in: query
          name: pipeline_id
          schema:
            type: string
            format: uuid
        - in: query
          name: search
          schema:
            type: string
          description: Case-insensitive partial match on opportunity name.
        - in: query
          name: stage_id
          schema:
            type: string
            format: uuid
        - in: query
          name: status
          schema:
            type: string
            enum:
              - lost
              - open
              - won
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpportunityListResponse'
          description: ''
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    OpportunityListResponse:
      type: object
      properties:
        results:
          type: array
          items:
            type: object
            additionalProperties: {}
          description: >-
            Opportunity rows including pipeline, stage, contact, score, value,
            status, notes, timestamps.
      required:
        - results
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````