trading channel to keep each price fresh.
What you need
- An API key from radion.app/dashboard.
- The token ids you want to track (each outcome has one).
1. Load the snapshot
Read the markets you care about, then pull a price per outcome token. Usemidpoint for a fair mid, price for the best bid or ask, and spread for the gap.
price with token_id and side.
2. Keep it live
Subscribe totrading filtered by your token ids. Update the matching cell on every fill instead of polling.
Tips
- Refresh the REST snapshot on a slow timer (say every minute) to correct any drift; let the WebSocket handle the fast updates.
- To list many markets at once, page
/v1/polymarket/marketswithlimitandcursor. - Need full depth, not just top of book? Use
/v1/polymarket/orderbook.
Next steps
API reference
Endpoints, schemas, and query parameters.
trading channel
Live fill payloads to drive your board.