Stream real-time, normalized prediction market data over WebSocket. One connection gives you cross-venue orderbooks, trades, and probability distributions from both Kalshi and Polymarket — no venue-specific code needed.
Data is addressed by what, not where. You subscribe to dist:fomc-2026-04-29 or dist:btc-5m-2026-03-24-0830-et, not a venue-specific ticker. Both venues arrive on the same channel, tagged by venue field.
Two feeds are available:
- Macro feed — FOMC, CPI, NFP, GDP, unemployment, equities, commodities
- Crypto feed — BTC and ETH prediction markets enriched with real-time Binance spot/futures data
Authentication
Send an auth message with your API key after connecting. The server responds with your tier and limits.
max_events: 0 means unlimited (Premium tier and above). Any positive number is the cap.
Subscribe and unsubscribe
Subscribe to channels by event. Events count as concurrent subscriptions — unsubscribing frees up slots.
Example
Subscribe response shape
channels lists the channels that were actually subscribed. If any submitted channel was dropped, the response also includes a rejected array — only present when there is at least one rejection. Each entry has a channel and a reason:
dist, book, and trade are change-driven — messages emit only when the underlying state changes, so an idle channel is normal during quiet windows. For current state on connect, also subscribe to snapshot:{event_key}, which delivers a full state message every 60 seconds.