This operation retrieves on-chain transaction records, including transfers, contract calls, and deposits. When wallet_uuid is provided, records are scoped to that wallet (with permission enforcement). When omitted, records across all wallets visible to the authenticated principal are returned. Use cursor-based pagination with after/before.
Documentation Index
Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt
Use this file to discover all available pages before exploring further.
Filter records by wallet ID. When omitted, records from all wallets visible to the authenticated principal are returned.
A cursor for forward pagination. Pass the after value from a previous response to retrieve the next page.
A cursor for backward pagination. Pass the before value from a previous response to retrieve the preceding page.
Deprecated. Use after/before cursors instead.
0 <= x <= 9223372036854776000The maximum number of items to return. Range: [1, 200].
1 <= x <= 200Filter records by transaction status. Accepts UserTransactionStatus integer values (e.g. 900 for success, 901 for failed) or label strings (e.g. success, processing). If omitted, all statuses are returned.
Filter records by transaction type. Possible values: transfer, contract_call, deposit, message_sign, x402_payment, mpp_payment. If omitted, all types are returned.
Filter records by token ID (for example, SETH, SETH_USDC). Use the Cobo token ID format. If omitted, all tokens are returned.
Filter records by Cobo chain ID (for example, ETH, BASE_ETH, SOL). If omitted, all chains are returned.
Filter records by blockchain address. Matches source or destination address. If omitted, records for all addresses are returned.
When true, each record includes an ext_transactions list with the associated downstream (external) transactions.
Successful Response
Pagination metadata for list responses.
Supports both legacy offset-based and cursor-based pagination.
Cursor fields (has_more, after, before) are populated for
cursor-paginated endpoints. Legacy fields (offset, limit) are
populated when the caller uses the deprecated offset parameter.