List Transactions
Authentication
Session JWT from POST /v0/auth/token, sent as Authorization: Bearer <sessionJwt>.
See Authentication for more details.
Query parameters
Opaque pagination cursor. Pass the nextCursor from the previous response; omit to fetch the first page.
Page size. Defaults to 50; capped at 200.
Exclusive lower bound on the transaction’s initiation time, as an ISO-8601 timestamp.
Inclusive lower bound on the transaction’s initiation time, as an ISO-8601 timestamp.
Exclusive upper bound on the transaction’s initiation time, as an ISO-8601 timestamp. Pairs with initiatedAt.gte to select a period without depending on its last instant.
Inclusive upper bound on the transaction’s initiation time, as an ISO-8601 timestamp.
Return only transactions whose settlement path matches. true is the instant-settlement path; false is standard settlement, which includes movement types that have no settlement path of their own, such as rewards and returns.
Return only transactions whose recipient received value on these networks, comma-separated.
Return only transactions whose source sent value on these networks, comma-separated.
Return only these movement types, comma-separated.
Response
Page of transactions, newest first (by initiated time, tie-broken by id).
Opaque cursor for the next page. Pass back verbatim as the cursor query param; null when no more results.

