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. 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.
Authorizations
Token from POST /auth/token
Path Parameters
Accepts an account ID (acc_ prefix).
Query Parameters
Type of account ledger entry: a credit, debit, hold, or release.
credit, debit, hold, release Response
The request has succeeded.
A paginated list of account ledger entries.
True when more rows exist beyond this page in the direction of travel (forward by default, backward when endingBefore was supplied).
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.
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.