Skip to main content
Queries token transactions with optional filters and cursor-based pagination.

Method Signature

Parameters

Filters are combined using AND logic.
sparkAddresses
string[]
Filter by Spark addresses.
issuerPublicKeys
string[]
Filter by issuer public keys.
tokenIdentifiers
string[]
Filter by Bech32m token identifiers.
outputIds
string[]
Filter by output IDs.
pageSize
number
Number of results per page (default: 50).
cursor
string
Cursor from a previous response for pagination.
direction
"NEXT" | "PREVIOUS"
Pagination direction (default: "NEXT").

Returns

transactions
TokenTransactionWithStatus[]
required
Array of token transaction objects.
pageResponse
object
required
Pagination metadata with nextCursor and prevCursor.

Example