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

# Get Plan Catalog

> Return available plan pricing and limits from Stripe (cached 1 hour).

Accessible to any authenticated user so it works during workspace creation.
Falls back to hardcoded defaults when Stripe is not configured or unreachable.



## OpenAPI

````yaml /openapi.json get /api/v1/billing/plans
openapi: 3.1.0
info:
  description: Change Impact Engine for multi-repo systems
  title: Riftmap
  version: 1.12.3
servers: []
security: []
paths:
  /api/v1/billing/plans:
    get:
      tags:
        - billing
      summary: Get Plan Catalog
      description: >-
        Return available plan pricing and limits from Stripe (cached 1 hour).


        Accessible to any authenticated user so it works during workspace
        creation.

        Falls back to hardcoded defaults when Stripe is not configured or
        unreachable.
      operationId: get_plan_catalog_api_v1_billing_plans_get
      parameters:
        - in: header
          name: X-Workspace-Id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Workspace-Id
        - in: cookie
          name: riftmap_access
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Riftmap Access
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlanCatalogResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    PlanCatalogResponse:
      properties:
        plans:
          items:
            $ref: '#/components/schemas/PlanPriceInfo'
          title: Plans
          type: array
        stripe_enabled:
          title: Stripe Enabled
          type: boolean
      required:
        - stripe_enabled
        - plans
      title: PlanCatalogResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    PlanPriceInfo:
      properties:
        base_price_amount:
          default: 0
          title: Base Price Amount
          type: integer
        base_price_currency:
          default: usd
          title: Base Price Currency
          type: string
        base_price_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Base Price Id
        features:
          default: ''
          title: Features
          type: string
        included_seats:
          anyOf:
            - type: integer
            - type: 'null'
          title: Included Seats
        max_org_connections:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Org Connections
        max_repos:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Repos
        plan_key:
          title: Plan Key
          type: string
        seat_addon_amount:
          default: 0
          title: Seat Addon Amount
          type: integer
        seat_addon_currency:
          default: usd
          title: Seat Addon Currency
          type: string
        seat_addon_price_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Seat Addon Price Id
      required:
        - plan_key
      title: PlanPriceInfo
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    APIKeyHeader:
      in: header
      name: X-API-Key
      type: apiKey
    HTTPBearer:
      description: API key as Bearer token (rfm_live_... prefix)
      scheme: bearer
      type: http

````