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

# List Plans

> Retrieve available billing plans

## Overview

Retrieve available billing plans. This endpoint returns information about all available subscription plans, including pricing, features, and limits.


## OpenAPI

````yaml GET /billing/plans
openapi: 3.1.0
info:
  title: Ledgerbeam API
  description: >-
    Conversational analytics API for querying data using natural language,
    managing resources, and interacting with data sources
  version: 1.0.0
  contact:
    name: Ledgerbeam Support
    email: support@ledgerbeam.com
  license:
    name: MIT
servers:
  - url: https://api.ledgerbeam.com/v1
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /billing/plans:
    get:
      summary: List plans
      description: Retrieve available billing plans
      operationId: listPlans
      responses:
        '200':
          description: Plans retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlanListResponse'
components:
  schemas:
    PlanListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Plan'
          description: List of available plans
    Plan:
      type: object
      properties:
        id:
          type: string
          description: Plan ID
          example: plan_free
        name:
          type: string
          description: Plan name
          example: Free Plan
        description:
          type: string
          description: Plan description
          example: Free tier with basic features
        price:
          type: number
          format: float
          description: Plan price
          example: 0
        currency:
          type: string
          description: Plan currency
          example: USD
        features:
          type: array
          items:
            type: string
          description: Plan features
          example:
            - 1000 requests/month
            - Basic support
        limits:
          type: object
          properties:
            requests_per_month:
              type: integer
              example: 1000
            rate_limit_per_minute:
              type: integer
              example: 10
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: API-KEY
      description: API key for authentication

````