> ## 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 subscription plans

> Lists active tiers and included bandwidth quotas.



## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/plans
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/plans:
    get:
      summary: List subscription plans
      description: Lists active tiers and included bandwidth quotas.
      responses:
        '200':
          description: List of plans
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Plan'
      security: []
components:
  schemas:
    Plan:
      type: object
      required:
        - id
        - name
      properties:
        id:
          type: string
          example: plan_pro
        name:
          type: string
          example: Pro Plan
        included_usage_bytes:
          type: integer
          format: int64
          example: 107374182400
  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_...`).

````