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

# List rate plans

> Retrieve paginated list of rate plans (read-only)



## OpenAPI

````yaml GET /rate-plans
openapi: 3.0.3
info:
  title: NativeMessage API
  version: 1.0.0
  description: Complete API documentation for NativeMessage platform
  contact:
    name: NativeMessage Support
    email: support@nativemessage.com
servers:
  - url: https://api-message.nativehub.live/api/v1
    description: Production server
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /rate-plans:
    get:
      tags:
        - Billing
      summary: List rate plans
      description: Retrieve paginated list of rate plans (read-only)
      operationId: listRatePlans
      parameters:
        - $ref: '#/components/parameters/PageParam'
        - $ref: '#/components/parameters/PerPageParam'
      responses:
        '200':
          description: Rate plans retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedRatePlans'
components:
  parameters:
    PageParam:
      name: page
      in: query
      description: Page number (default 1)
      schema:
        type: integer
        default: 1
        minimum: 1
    PerPageParam:
      name: per_page
      in: query
      description: Items per page (default 20, max 100)
      schema:
        type: integer
        default: 20
        minimum: 1
        maximum: 100
  schemas:
    PaginatedRatePlans:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/RatePlan'
        total:
          type: integer
        page:
          type: integer
        per_page:
          type: integer
    RatePlan:
      type: object
      properties:
        id:
          type: string
          format: uuid
        tenant_id:
          type: string
          format: uuid
        account_id:
          type: string
          format: uuid
        name:
          type: string
        type:
          type: string
        status:
          type: string
        effective_date:
          type: string
          format: date
        expiry_date:
          type: string
          format: date
        created_at:
          type: string
          format: date-time
      example:
        id: d2e3f4a5-b6c7-8901-de23-456789012345
        tenant_id: c3d4e5f6-a7b8-9012-cdef-123456789012
        account_id: b2c3d4e5-f6a7-8901-bcde-f12345678901
        name: Standard Sell Rate Plan
        type: SELL
        status: active
        effective_date: '2026-01-01'
        created_at: '2025-12-20T10:00:00Z'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````