Public Market Channels

View as Markdown

Connection URL

wss://6mm.com/ws

Public WebSocket does not require authentication.

Common Channels

ChannelDescription
market.depth.{symbol}Order book depth. Sends a snapshot first, then incremental updates
market.trade.{symbol}Latest trades
market.kline.{symbol}.{interval}Klines
market.ticker.{symbol}Single-symbol ticker summary
market.tickersAll-symbol ticker summary

Subscription Example

1{ "id": "1772007814666", "op": "subscribe", "args": ["market.depth.BTCUSDT"] }

Push Message Wrapper

1{
2 "topic": "market.depth.BTCUSDT",
3 "event": "data",
4 "ts": 1772007815000,
5 "data": {}
6}