Guides
Top Robinhood Chain Traders on FOMO
Two ways to surface the best Robinhood Chain traders on FOMO: the verified-PnL leaderboard for track record, and the chain-scoped activity stream for who is active on chain 4663 right now. Both resolve to real wallets.

Robinhood Chain is the most active chain on fomo.family, so the natural next question is who the best traders on it are. There are two honest ways to answer that, and the FOMO API serves both. One ranks by track record; the other ranks by who is moving the chain right now.
By track record: the verified leaderboard
The leaderboard ranks traders by fomo.family's PnL figure, with the real wallets attached so you can check the trades.
curl "https://api.fomoapi.io/v2/leaderboard/30d?limit=50" \
-H "authorization: Bearer YOUR_API_KEY"
Each row carries the handle, PnL for the window, volume, trade count, and both wallets:
{ "rank": 1, "handle": "unipcs", "pnlUsd": 1492846, "trades": 2010,
"wallets": { "solana": "2heJ...", "evm": "0x0a6e..." } }
The evm address is the trader's Robinhood Chain wallet. To confirm a leaderboard trader is actually active on Robinhood Chain, read their trades and look at the chain on each:
curl "https://api.fomoapi.io/v2/users/<handle>/positions?limit=50" \
-H "authorization: Bearer YOUR_API_KEY"
# each trade: { "chain": "robinhood", "chainId": 4663, ... }
By momentum: who is driving chain 4663 now
Track record is backward looking. To see who is active on Robinhood Chain right now, pull the chain-scoped activity stream and rank the handles by how much size they are putting up:
curl "https://api.fomoapi.io/v2/alerts?chain=robinhood&limit=200" \
-H "authorization: Bearer YOUR_API_KEY"
Every item is a Robinhood Chain buy, sell, or thesis carrying a trader and a usdValue. Group by trader, sum usdValue, and you have a live "most active on Robinhood Chain" board that updates as the chain moves. Do the same on the WebSocket to keep it live:
new WebSocket("wss://api.fomoapi.io/ws/alerts?chain=robinhood");
From a name to everything about them
Once you have a handle from either method, one call resolves the full picture:
curl "https://api.fomoapi.io/v2/users/<handle>" \
-H "authorization: Bearer YOUR_API_KEY"
You get their Robinhood Chain wallet (wallets.evm), verified multi-window PnL, holdings, account age, and top tokens. From there, GET /v2/users/<handle>/positions gives their entry and exit history, and GET /v2/thesis/user/<handle>?chain=robinhood gives the reasoning behind their Robinhood Chain trades.
The free tier includes 10,000 requests per month and the WebSocket. For higher volume and 24/7 streaming, see /pricing.
FOMO API is an independent, unofficial data layer for fomo.family. It is not affiliated with, endorsed by, or sponsored by FOMO or Robinhood.
Ship on fomo.family trader data
Both-chain wallets, PnL and holdings, plus two live streams: the app feed on every plan, the on-chain stream on Growth. One API.
Get an API key