---
title: "List billing transactions"
method: GET
path: "/billing/transactions"
tags: ["Billing"]
---

# List billing transactions

`GET /billing/transactions`

List recent credit ledger transactions with pagination.

## Query parameters

- `organizationId` string — Organization to query transactions for. Auto-filled from CLI and SDK context when omitted. User tokens must supply it unless the credential's fixed scope resolves it; secret keys may omit it (the key's organization applies).
- `limit` integer — Maximum number of transactions to return per page.
- `page` integer — Page number for pagination (1-indexed).

## Response `200`

OK

- object
  - `items` object[], required
    - `id` string, required
    - `transactionType` 'cycle_top_up' | 'upgrade_top_up' | 'deficit_settlement' | 'auto_top_up' | 'one_off_top_up' | 'usage_debit' | 'adjustment' | 'migration_opening_balance' | 'void', required
    - `creditDelta` string, required
    - `direction` 'credit' | 'debit', required — Which way this entry moved the balance. Derived from the business event, not from the amount: a zero-credit cycle renewal is still a credit.
    - `reason` 'cycle_renewal' | 'plan_upgrade' | 'auto_purchase' | 'one_off_purchase' | 'deficit_settlement' | 'usage' | 'adjustment' | 'migration_opening_balance', required — The business event that produced this entry.
    - `amount` string, required — Non-negative magnitude of the balance movement. Apply `direction` for the signed value.
    - `balanceAfter` string, required
    - `occurredAt` string, date-time, required
    - `billingInvoiceId` string, nullable, required
  - `pagination` object, required — Pagination metadata for the transaction list.
    - `page` number, required
    - `limit` number, required
    - `total` number, required
    - `totalPages` number, required
    - `hasNext` boolean, required
    - `hasPrev` boolean, required

---

[API](https://skmtc.dev/sazabi/apis/sazabi-public-api.md) · [All operations](https://skmtc.dev/sazabi/apis/sazabi-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sazabi/sazabi-public-api/revisions/1d12b71c735a/schema)
