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

# Plans x features grid plus the org's current plan and usage



## OpenAPI

````yaml /api-reference/openapi.json get /v1/billing/matrix
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/billing/matrix:
    get:
      tags:
        - billing
      summary: Plans x features grid plus the org's current plan and usage
      operationId: getBillingMatrix
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BillingMatrixResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    BillingMatrixResponse:
      properties:
        enabled:
          type: boolean
          title: Enabled
        customer_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Customer Id
        plans:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Plans
        features:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Features
        customer:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Customer
      type: object
      required:
        - enabled
      title: BillingMatrixResponse
      description: >-
        Plans x features grid plus the org's current entitlements.


        ``enabled`` is ``False`` when the Autumn kill-switch
        (``AUTUMN__ENABLED``)

        is off: the org may not exist in Autumn yet, so ``plans``/``features``
        are

        empty and ``customer`` is ``None``, and the frontend renders a "billing
        not

        configured" state instead of erroring.
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
        retryable:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Retryable
        retry_after:
          anyOf:
            - type: integer
            - type: 'null'
          title: Retry After
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````