> ## 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 invoices

> Retrieve paginated list of invoices (read-only)



## OpenAPI

````yaml GET /invoices
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:
  /invoices:
    get:
      tags:
        - Billing
      summary: List invoices
      description: Retrieve paginated list of invoices (read-only)
      operationId: listInvoices
      parameters:
        - $ref: '#/components/parameters/PageParam'
        - $ref: '#/components/parameters/PerPageParam'
        - name: status
          in: query
          description: Filter by invoice status
          schema:
            type: string
            enum:
              - draft
              - issued
              - paid
              - overdue
      responses:
        '200':
          description: Invoices retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedInvoices'
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:
    PaginatedInvoices:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Invoice'
        total:
          type: integer
        page:
          type: integer
        per_page:
          type: integer
    Invoice:
      type: object
      properties:
        id:
          type: string
          format: uuid
        tenant_id:
          type: string
          format: uuid
        account_id:
          type: string
          format: uuid
        invoice_number:
          type: string
        amount:
          type: number
        currency:
          type: string
        status:
          type: string
          enum:
            - draft
            - issued
            - paid
            - overdue
        period_start:
          type: string
          format: date
        period_end:
          type: string
          format: date
        issued_at:
          type: string
          format: date-time
        paid_at:
          type: string
          format: date-time
        created_at:
          type: string
          format: date-time
      example:
        id: f4a5b6c7-d8e9-0123-fa45-678901234567
        tenant_id: c3d4e5f6-a7b8-9012-cdef-123456789012
        account_id: b2c3d4e5-f6a7-8901-bcde-f12345678901
        invoice_number: INV-2026-02-001
        amount: 5250.75
        currency: USD
        status: issued
        period_start: '2026-02-01'
        period_end: '2026-02-28'
        issued_at: '2026-02-01T00:00:00Z'
        created_at: '2026-02-01T00:00:00Z'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````