> ## 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 plan entries

> Retrieve paginated list of rate plan entries (read-only)



## OpenAPI

````yaml GET /rate-plans/{id}/entries
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/{id}/entries:
    get:
      tags:
        - Billing
      summary: List rate plan entries
      description: Retrieve paginated list of rate plan entries (read-only)
      operationId: listRatePlanEntries
      parameters:
        - name: id
          in: path
          required: true
          description: Rate Plan ID
          schema:
            type: string
            format: uuid
        - $ref: '#/components/parameters/PageParam'
        - $ref: '#/components/parameters/PerPageParam'
      responses:
        '200':
          description: Rate plan entries retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedRatePlanEntries'
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:
    PaginatedRatePlanEntries:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/RatePlanEntry'
        total:
          type: integer
        page:
          type: integer
        per_page:
          type: integer
    RatePlanEntry:
      type: object
      properties:
        id:
          type: string
          format: uuid
        plan_id:
          type: string
          format: uuid
        country_code:
          type: string
        operator_code:
          type: string
        mcc_mnc:
          type: string
        rate:
          type: number
        currency:
          type: string
        effective_date:
          type: string
          format: date
        expiry_date:
          type: string
          format: date
      example:
        id: e3f4a5b6-c7d8-9012-ef34-567890123456
        plan_id: d2e3f4a5-b6c7-8901-de23-456789012345
        country_code: BD
        operator_code: GP
        mcc_mnc: 470-01
        rate: 0.05
        currency: USD
        effective_date: '2026-01-01'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````