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

# List an account's ledger entries

> The statement for one account — the same rows as `GET /v1/ledger?accountNumber=…`, newest first. Every balance change is here, so paging back to the start reproduces `totalBalance` exactly.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/accounts/{id}/ledger
openapi: 3.1.0
info:
  title: Chipper Platform API
  version: '2026-02-20'
  description: >-
    Payouts, collections, and FX across African rails — bank, mobile money, and
    stablecoins — through one API.
servers:
  - url: https://api.platform.chipper.ai
    description: Production (sk_live_ keys)
  - url: https://sandbox-api.platform.chipper.ai
    description: Sandbox (sk_test_ keys — simulated rails, no real money)
security:
  - bearerAuth: []
paths:
  /v1/accounts/{id}/ledger:
    get:
      tags:
        - Accounts & Ledger
      summary: List an account's ledger entries
      description: >-
        The statement for one account — the same rows as `GET
        /v1/ledger?accountNumber=…`, newest first. Every balance change is here,
        so paging back to the start reproduces `totalBalance` exactly.
      parameters:
        - schema:
            type: string
            description: Account number.
            example: GHS12345678
          required: true
          name: id
          in: path
        - schema:
            type: string
            enum:
              - manual_credit
              - crypto_deposit
              - payout_debit
              - payout_credit
              - payout_refund
              - fee_debit
              - fee_refund
              - fee_revenue
              - conversion_debit
              - conversion_credit
              - batch_reserve
              - batch_reserve_release
              - collection_credit
              - collection_fee_debit
              - collection_fee_revenue
              - chargeback_debit
              - payment_link_debit
              - payment_link_credit
              - payment_link_fee
          required: false
          name: type
          in: query
        - schema:
            type: string
          required: false
          name: referenceId
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: from
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: to
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 60
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: cursor
          in: query
      responses:
        '200':
          description: Newest first.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/LedgerEntry'
                  hasMore:
                    type: boolean
                  nextCursor:
                    type:
                      - string
                      - 'null'
                    description: >-
                      Pass as `cursor` to fetch the next page. Null on the last
                      page.
                required:
                  - data
                  - hasMore
                  - nextCursor
        '400':
          description: Invalid request — the body failed validation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: validation_error
                message: Request validation failed
                requestId: req_q7vei435zifs51ia0lqr
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: unauthorized
                message: Invalid API key
                requestId: req_q7vei435zifs51ia0lqr
        '403':
          description: The API key lacks the required scope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: forbidden
                message: API key does not have the required scope
                requestId: req_q7vei435zifs51ia0lqr
        '404':
          description: No such resource in this organization.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: not_found
                message: Account not found
                requestId: req_q7vei435zifs51ia0lqr
      security:
        - bearerAuth: []
components:
  schemas:
    LedgerEntry:
      type: object
      properties:
        id:
          type: string
          example: le_k3m9dq2vx7pw4hn8ztgb
        sequence:
          type: integer
          description: >-
            Global booking order. Strictly increasing; use it to reconcile, not
            `createdAt`.
          example: 4821
        type:
          type: string
          enum:
            - manual_credit
            - crypto_deposit
            - payout_debit
            - payout_credit
            - payout_refund
            - fee_debit
            - fee_refund
            - fee_revenue
            - conversion_debit
            - conversion_credit
            - batch_reserve
            - batch_reserve_release
            - collection_credit
            - collection_fee_debit
            - collection_fee_revenue
            - chargeback_debit
            - payment_link_debit
            - payment_link_credit
            - payment_link_fee
          example: payout_debit
        amount:
          type: string
          description: 'Signed decimal string: credits positive, debits negative.'
          example: '-150.00'
        currency:
          type: string
          example: GHS
        accountNumber:
          type: string
          example: GHS12345678
        balanceAfter:
          type: string
          description: Running total balance on the account after this entry.
          example: '1250.00'
        referenceType:
          type:
            - string
            - 'null'
          description: >-
            What booked this entry: `payout`, `collection`, `conversion`,
            `payment_link`, `topup`, … Null for manual adjustments.
          example: payout
        referenceId:
          type:
            - string
            - 'null'
          description: Id of that resource.
          example: pay_ghs_p95akjfs339uy9icpelj
        externalReference:
          type:
            - string
            - 'null'
          description: >-
            The externalReference you gave the source payout or collection, if
            any.
          example: inv-1042
        createdAt:
          type: string
          format: date-time
      required:
        - id
        - sequence
        - type
        - amount
        - currency
        - accountNumber
        - balanceAfter
        - referenceType
        - referenceId
        - externalReference
        - createdAt
    Error:
      type: object
      properties:
        error:
          type: string
          description: Stable machine-readable code.
        message:
          type: string
          description: Human-readable explanation.
        requestId:
          type: string
          description: Echoed in the x-request-id response header — quote it to support.
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Your API key: `sk_test_…` (sandbox) or `sk_live_…` (production).'

````