Skip to main content

Spread Ticker

Subscribe to the ticker stream.

Push frequency: 100ms

Topic:
tickers.{symbol}

Response Parameters

ParameterTypeComments
topicstringTopic name
typestringData type. snapshot
tsnumberThe timestamp (ms) that the system generates the data
datamapObject
> symbolstringSpread combination symbol name
> bidPricestringBid 1 price
> bidSizestringBid 1 size
> askPricestringAsk 1 price
> askSizestringAsk 1 size
> lastPricestringLast trade price
> highPrice24hstringThe highest price in the last 24 hours
> lowPrice24hstringThe lowest price in the last 24 hours
> prevPrice24hstringPrice 24 hours ago
> volume24hstringVolume for 24h

Subscribe Example

{
"op": "subscribe",
"args": [
"tickers.SOLUSDT_SOL/USDT"
]
}

Event Example

{
"topic": "tickers.SOLUSDT_SOL/USDT",
"ts": 1744168585009,
"type": "snapshot",
"data": {
"symbol": "SOLUSDT_SOL/USDT",
"bidPrice": "20.3359",
"bidSize": "1.7",
"askPrice": "",
"askSize": "",
"lastPrice": "21.8182",
"highPrice24h": "24.2356",
"lowPrice24h": "-3",
"prevPrice24h": "22.1468",
"volume24h": "23309.9"
}
}