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

# List Deployments

> List deployments owned by the authenticated user.

<Info>
  For AI agents, use `https://docs.tavus.io/openapi.yaml` for the full HTTP API contract.
</Info>


## OpenAPI

````yaml get /v2/deployments
openapi: 3.0.3
info:
  title: Tavus Developer API Collection
  version: 1.0.0
  contact: {}
servers:
  - url: https://tavusapi.com
security:
  - apiKey: []
tags:
  - name: Videos
  - name: Faces
  - name: Voices
  - name: Conversations
  - name: Deployments
  - name: PALs
  - name: Tools
  - name: PAL Tools
  - name: Pronunciation Dictionaries
  - name: Replacements
  - name: Transcriptions
  - name: Documents
paths:
  /v2/deployments:
    get:
      tags:
        - Deployments
      summary: List Deployments
      description: List deployments owned by the authenticated user.
      operationId: listDeployments
      parameters:
        - name: pal_id
          in: query
          required: false
          schema:
            type: string
          description: Filter to deployments for a single PAL.
        - name: search
          in: query
          required: false
          schema:
            type: string
          description: Case-insensitive search on deployment name.
        - name: status
          in: query
          required: false
          schema:
            type: string
          description: 'Comma-separated statuses: `draft`, `active`, `inactive`.'
        - name: channel
          in: query
          required: false
          schema:
            type: string
          description: 'Comma-separated channels: `widget`, `embed`, `landing-page`.'
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 0
        - name: sort
          in: query
          required: false
          schema:
            type: string
            enum:
              - asc
              - desc
            default: desc
      responses:
        '200':
          description: Paginated deployment list
          content:
            application/json:
              schema:
                type: object
                properties:
                  deployments:
                    type: array
                    items:
                      $ref: '#/components/schemas/deployment'
                  total:
                    type: integer
                  page:
                    type: integer
                  limit:
                    type: integer
        '401':
          description: UNAUTHORIZED
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Invalid access token
      security:
        - apiKey: []
components:
  schemas:
    deployment:
      type: object
      description: >-
        A managed deployment. See [Deployments
        overview](/sections/deployments/overview).
      properties:
        deployment_id:
          type: string
          example: d1234567890abcdef
        pal_id:
          type: string
          description: PAL that powers the deployment.
          example: pcb7a34da5fe
        channel:
          type: string
          enum:
            - widget
            - embed
            - landing-page
        status:
          type: string
          enum:
            - draft
            - active
            - inactive
        name:
          type: string
        has_password:
          type: boolean
        customization:
          type: object
        replica_thumbnail_video_url:
          type: string
          nullable: true
          deprecated: true
          description: >-
            **Removed.** Use `thumbnail_video_url` and `thumbnail_image_url`
            instead.
        thumbnail_video_url:
          type: string
          nullable: true
          description: URL for the face preview video thumbnail.
        thumbnail_image_url:
          type: string
          nullable: true
          description: URL for the face preview image thumbnail.
        limits:
          type: object
        allowed_origins:
          type: array
          items:
            type: string
        usage_total:
          type: integer
        usage_today:
          type: integer
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````