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

# Get all plans



## OpenAPI

````yaml specs/billing_api_docs.json get /api/v1/plans
openapi: 3.0.1
info:
  title: Billing API
  description: Billing service for managing subscriptions, payments, and entitlements
  contact: {}
  version: '1.0'
servers:
  - url: https://dev-billing-api.iqraa.ai/api/v1
security: []
tags:
  - name: Customers
    description: Customers related endpoints
  - name: Subscriptions
    description: Subscription related endpoints
  - name: Plans
    description: Plans related endpoints
  - name: Entitlements
    description: Entitlements related endpoints
  - name: Payments
    description: Payments related endpoints
  - name: Emails
    description: Email related endpoints
paths:
  /api/v1/plans:
    get:
      tags:
        - Plans
      summary: Get all plans
      operationId: PlansController_findAll
      parameters:
        - name: X-Preferred-Language
          required: false
          in: header
          description: Language code for the requested translation
          schema:
            enum:
              - ar
              - en
            type: string
      responses:
        '200':
          description: Returns all available plans
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Plan'
        '401':
          description: Unauthorized - Missing or invalid admin API key
components:
  schemas:
    Plan:
      type: object
      properties: {}

````