List wallet transactions
Returns the transaction history for the specified wallet, most recent
first, with cursor-based pagination and optional type/date filters. Each
entry is a single account-ledger movement (credit, debit, hold, or
release), covering both inbound and outbound activity on the wallet. Each
carries a balanceAfter snapshot taken when the entry was written — see
that field; it is not a guaranteed running total.
Authorizations
Token from POST /auth/token
Path Parameters
Wallet ID (wlt_ prefix; legacy acc_ also accepted).
Query Parameters
Page size, supported range 1-100. The default and maximum are per-resource
(see each endpoint's description; most endpoints default to
50) and are resolved at runtime from configuration. Values outside the range
are clamped to the nearest bound rather than rejected. The range is published
machine-readably via the x-minimum/x-maximum OpenAPI extensions below —
deliberately NOT via @minValue/@maxValue, which emit JSON-Schema
minimum/maximum and make the generated SDK (Zod) reject values the server
accepts and clamps. See PaginatedList.limit for the effective value applied.
Filter by ledger entry type. Type of account ledger entry: a credit, debit, hold, or release.
credit, debit, hold, release Inclusive start of the date range.
Inclusive end of the date range.
Response
The request has succeeded.
A paginated list of account ledger entries.
Resource type discriminator.
The effective page size applied to this response, after clamping an
out-of-range or unset requested limit into the supported bound.
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.
The page of results.