v1

latestOpenAPI 3.0.32026-07-2650226215.9 KB
Wallet

List wallet transactions

Returns the transaction history for the specified wallet, most recent first, with cursor-based pagination and optional type/date filters.

Deprecated: prefer GET /transactions?walletId=, which adds the full transaction-filter set. Caveat - it is not yet a drop-in replacement: the walletId filter currently matches the wallet as the transaction source only (no inbound / either-side filter yet) and returns the transaction ledger shape rather than this per-wallet account ledger, so inbound history is not covered. This route remains available until that gap closes and will be removed in a future major version.

get/accounts/{id}/transactions

Path parameters

idstring required

Accepts an account ID (acc_ prefix).

Query parameters

limitinteger
startingAfterstring
endingBeforestring
transactionType'credit' | 'debit' | 'hold' | 'release'

Type of account ledger entry: a credit, debit, hold, or release.

Filter by ledger entry type.

sincestring

Inclusive start of the date range.

untilstring

Inclusive end of the date range.

Response

The request has succeeded.

objectstring

Resource type discriminator.

hasMoreboolean

True when more rows exist beyond this page in the direction of travel (forward by default, backward when endingBefore was supplied).

nextCursorstring

Opaque cursor pointing at the last item in this page. Present when data is non-empty. Pass as startingAfter to fetch the next page; hasMore=false signals no more pages forward.

previousCursorstring

Opaque cursor pointing at the first item in this page. Present when data is non-empty. Pass as endingBefore to page backward; when this yields an empty response the client is at the start of the list.