Skip to main content

Tickers

Description

Retrieve the trading data for the trading pair over the past 24 hours, with real-time market data updates occurring every 100 ms.

Pushing Frequency

The push frequency is the fastest interval 100 ms push the data.

Channel

tickers

Request Parameters

ParameterRequiredTypeDescription
eventYesStringOperation: subscribe, unsubscribe
channelYesStringtickers
symbolsYesArraytrading pair array

Request Response

ParameterTypeDescription
eventStringOperation: subscribe, unsubscribe
channelStringtickers
symbolsArraytrading pair array

Push Data

ParameterTypeDescription
channelStringtickers
dataArrayThe subscribed data
> sStringA trading pair
> oStringOpening price
> lStringLowest price in the past 24 hours
> hStringHighest price in the past 24 hours
> cStringClosing price
> qtyStringTrading unit, the quantity of the base currency,or Cont for the number of contracts.
> amtStringTrading unit, the quantity of the quote currency.
> tCLongTrades count
> sTLongStart time of the 24-hour interval
> cTLongEnd time of the 24-hour interval
> dCStringDaily price change in decimal
> bPxStringBest bid price
> bSzStringQuantity at the best bid price
> aPxStringBest ask price
> aSzStringQuantity at the best ask price
> tsLongPush time (millisecond)

Request Example

{
"event": "subscribe",
"channel": ["tickers"],
"symbols": ["BTC_USDT_PERP"]
}

Push Data Example

{
"channel": "tickers",
"data": [
{
"s": "BTC_USDT_PERP",
"o": "46000",
"l": "26829.541",
"h": "46100",
"c": "46100",
"qty": "18736",
"amt": "8556118.81658",
"tC": 44,
"sT": 1718785800000,
"cT": 1718872244268,
"dC": "0.0022",
"bPx": "46000",
"bSz": "46000",
"aPx": "46100",
"aSz": "9279",
"ts": 1718872247385
}
]
}