Skip to main content
Synthesis provides three WebSocket endpoints for real-time updates. All connections use the same pattern: connect, subscribe, receive initial state, then receive live updates.

Balance

Stream wallet balances, order fills, and position changes in real-time.

Orderbook

Live orderbook snapshots and delta updates for prediction markets.

Trades

Real-time trade executions, volume tracking, and whale alerts.

Connection basics

All WebSocket connections follow the same pattern:
The server sends ping frames every 30 seconds to keep connections alive. Your client should respond with pong frames automatically (most WebSocket libraries handle this).

Endpoints