1. Build the follow list
Pull the leaderboard and keep the top grades. The leaderboard ranks S, A, and B already; filter to S and A in code (there is nomin_grade param on this endpoint).
strategy to rank a single strategy type:
2. Enrich the list
Pull full profiles for the whole set in one call with batch. Addexpand for strategy and trust if you want to weight them:
3. Watch for new activity
The whale-trade feed is the live signal. Poll it filtered to high grades, then keep only trades from wallets on your follow list:whale_trades_inserted and apply the same follow-list filter when each event arrives. See Webhooks.
4. Drill into one market
When a followed trader enters a market you care about, read their full entry and exit history on that market with the position timeline. It takes the trader and acondition_id:
What this recipe does not do
There is no per-trader open-positions endpoint and no per-trader push channel. “Watch” means polling the whale-trade feed (or thewhale_trades_inserted webhook) and matching addresses, plus the per-market timeline once you know the condition_id. Plan your loop around the feed, not around a subscription to a single wallet.