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

# Get Pipeline

> Return a single pipeline together with its ordered stages.



## OpenAPI

````yaml GET /crm/pipelines/{pipeline_id}/
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/{pipeline_id}/:
    get:
      tags:
        - crm
      summary: Get Pipeline
      description: Return a single pipeline together with its ordered stages.
      operationId: crm_pipelines_retrieve_2
      parameters:
        - in: path
          name: pipeline_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: Pipeline detail with `stages[]` inline.
        '404':
          description: Pipeline not found.
      security:
        - jwtAuth: []
        - {}
components:
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````