trading with confirmed: false to stream pending exchange transactions. Pair it with the confirmed trading feed to know when the trade actually lands.
What you need
- An API key from radion.app/dashboard.
- A size threshold in whole USD (for example,
10000).
Alert on pending, confirm on landing
Subscribe to both feeds. Alert on the pending frame, then match it to the confirmed event bytransaction_hash. Both arrive on the trading channel, so you tell them apart by the confirmed flag on the frame.
How the size filter differs
- On the confirmed
tradingfeed,min_usdmeasures the filled amount. - On the pending feed (
confirmed: false), thecall.notional_usdfield is the pending order size. It may only partly fill or never land.
min_usd narrow the confirmed side.
Read the pending frame
Thecall object holds decoded calldata: method, market_ids, token_ids, wallets, notional_usd, and an orders array (each order is { maker, taker, token_id, side, maker_amount, taker_amount }). call is null when the calldata is not a known Polymarket call. See Mempool for the full frame and filter reach.
Next steps
Mempool reference
Frame shape, the
call object, and filter limits.Copy-trade a whale
Mirror a wallet’s trades in real time.