Skip to main content
The Wallets API exposes the same data shown on Retina Terminal wallet pages — portfolio holdings, estimated PnL, Cortex reputation score, behavioral classification, and recent trade history. Use it to build wallet-monitoring tools, leaderboard views, or copy-trading logic. This page also documents the global GET /events endpoint for querying the on-chain event stream across all wallets and tokens.

GET /wallets/:address

Path Parameter

string
required
The on-chain EVM wallet address.

Example Request

Example Response

GET /wallets/:address/events — Trade History

Query Parameters

string
Filter by event type. Options: swap, liquidity_add, liquidity_remove, transfer.
integer
Page number (default: 1).
integer
Results per page (default: 50, max: 200).

Example Response Entry

GET /events — Global On-Chain Event Stream

The /events endpoint provides a paginated stream of on-chain activity across all indexed wallets and tokens on Robinhood Chain — including swaps, liquidity adds and removes, and transfers. Use it to monitor market-wide activity, detect unusual patterns, or feed real-time data pipelines.

Query Parameters

string
Filter by event type. Options: swap, liquidity_add, liquidity_remove, transfer. Omit to return all event types.
string
Filter events to a specific token contract address.
string
Filter events to a specific wallet address.
string
ISO 8601 timestamp. Return only events after this time (e.g. 2025-01-15T00:00:00Z).
integer
Page number (default: 1).
integer
Results per page (default: 50, max: 200).

Example Request

Example Response