List transactions across all accounts in the workspace
Fans out across connection-linked and connectionless accounts in the caller workspace and returns the merged list of transactions, sorted newest-first, capped at size (default 5). Pagination is opaque token (cursor) based — pass meta.next_cursor back as ?cursor to fetch the next page; null next_cursor means no more results. Accounts whose provider does not support transactions, or that fail to fetch, are skipped.
Authorizations
Authorization method required to allow user to access the api endpoints.
Query Parameters
Opaque cursor returned in meta.next_cursor of a previous response.
"eyJ0aW1lc3RhbXAiOiIyMDI0LTAxLTAyVDAwOjAwOjAwLjAwMFoiLCJpZCI6IjkxIn0="
Maximum number of transactions to return after merging and sorting newest-first across all connections.
1 <= x <= 1005
Comma-separated asset symbols to filter by. A transaction is kept when its displayed asset matches one of these symbols (case-insensitive) — for a trade that is the base asset, otherwise the first transfer leg. Applied to the merged result.
"USDC,ETH"
Start time (ISO 8601). Converted to Date.
"2025-01-01T00:00:00Z"
End time (ISO 8601). Converted to Date.
"2025-12-31T23:59:59Z"
Comma-separated status aliases (lowercase): 'success' (CONFIRMED), 'errored' (FAILED), 'pending' (PENDING).
PENDING, CONFIRMED, FAILED "success,pending"
Minimum USD amount (decimal). Converted to number.
"100.50"
Maximum USD amount (decimal). Converted to number.
"1000"
Case-insensitive substring search over transaction id, hash, network, asset symbols, and counterparty addresses.
"0xabc"
Limit results to transactions belonging to this account (must be linked to a connection in the workspace).
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Limit results to transactions belonging to any of these accounts (comma-separated UUIDs). Supersedes account_id when both are sent; the singular form stays for links minted before the filter accepted more than one account.
"uuid1,uuid2"
Limit results to accounts belonging to these group IDs (comma-separated UUIDs).
"uuid1,uuid2"
Comma-separated category labels or catalog ids. A transaction is kept when its category matches one of these values (labels are case-insensitive).
"Payroll,Bank Fees"
Comma-separated networks. Restricts on-chain rows (provider is null) to these networks (case-insensitive). Connection rows (provider set) are always returned, including banks/exchanges/custodians with no network.
"eth,solana"