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

# List projects

> Returns all projects under the active tenant.



## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/projects
openapi: 3.1.0
info:
  title: Qumo Deploy REST API
  description: >
    The Qumo Deploy REST API provides programmatic control over edge relay
    clusters,

    ephemeral token issuance, tenant lifecycle, bot machine identities, and
    billing.
  version: 1.0.0
servers:
  - url: https://api.qumo-deploy.com
    description: Production Control Plane
  - url: http://localhost:8080
    description: Local Development / Sandbox
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /v1/projects:
    get:
      summary: List projects
      description: Returns all projects under the active tenant.
      parameters:
        - in: query
          name: tenant_id
          schema:
            type: string
          required: false
          description: Tenant filter
      responses:
        '200':
          description: Array of projects
          content:
            application/json:
              schema:
                type: object
                properties:
                  projects:
                    type: array
                    items:
                      $ref: '#/components/schemas/Project'
components:
  schemas:
    Project:
      type: object
      required:
        - id
        - name
        - tenant_id
        - environment
      properties:
        id:
          type: string
          example: prj_prod_01
        name:
          type: string
          example: live-stream-prod
        tenant_id:
          type: string
          example: ten_8f29acb0
        environment:
          type: string
          enum:
            - production
            - test
          example: production
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |
        Bearer token (User session or Bot machine token).
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |
        Project-scoped API key (`qumo_live_...` or `qumo_test_...`).

````