> ## 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 Pipelines

> List CRM pipelines for the authenticated company. The default response includes per-pipeline counts (stages, opportunities) and total opportunity value. Pass `quick=true` for a lightweight shape that includes the stages inline (used for stage pickers).



## OpenAPI

````yaml GET /crm/pipelines/
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/pipelines/:
    get:
      tags:
        - crm
      summary: List Pipelines
      description: >-
        List CRM pipelines for the authenticated company. The default response
        includes per-pipeline counts (stages, opportunities) and total
        opportunity value. Pass `quick=true` for a lightweight shape that
        includes the stages inline (used for stage pickers).
      operationId: crm_pipelines_retrieve
      parameters:
        - in: query
          name: include_archived
          schema:
            type: boolean
            default: false
          description: Include archived pipelines.
        - in: query
          name: quick
          schema:
            type: boolean
            default: false
          description: Return a slim shape with stages inline and no counts.
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipelineListResponse'
          description: Pipelines for the company.
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    PipelineListResponse:
      type: object
      properties:
        results:
          type: array
          items:
            type: object
            additionalProperties: {}
          description: >-
            Pipeline rows. Default shape: id, company_id, name, description,
            is_archived, timestamps, stage_count, opportunity_count,
            pipeline_value. With `quick=true`: id, name, stages[].
      required:
        - results
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````