Skip to content

Description

24-hour rolling window mini-ticker statistics for all symbols (this is aggregated stream ticker data, with a different data structure compared to individual ticker subscription). These statistics are not based on UTC daily data, but rather a 24-hour rolling window from the request time backward.

Request Parameters

ParameterTypeRequiredDescription
opStringYesOperation, subscribe unsubscribe
argsList<Object>Yes
> symbolStringYesProduct ID e.g: ETHUSDT
> chStringYesChannel, tickers

request example:

json
{
	"op": "subscribe",
	"args": [{
			"symbol": "BTCUSDT",
			"ch": "tickers"
		},
		{
			"symbol": "ETHUSDT",
			"ch": "tickers"
		}
	]
}

Push Parameters

ParameterTypeDescription
chStringChannel name
tsint64Time stamp
dataList<String>Subscription data
> sStringsymbol, Product ID E.g. ETHUSDT
> oStringOpening price
> hStringHighest price
> lStringLowest price
> laStringLast price
> bStringTrading volume of the coin
> qStringTrading volume of quote currency
> rString24-hour fluctuations
> bdStringBest Bid Price
> akStringBest Ask Price
> bvStringBest Bid Volume
> avStringBest Ask Volume

push data:

json
{ 
  "ch": "tickers",
  "ts": 1732178884994,
  "data":[
    {
        "s": "BTCUSDT",
        "la": "0.0025",                 
        "o": "0.0010",                 
        "h": "0.0025",                 
        "l": "0.0010",                 
        "b": "10000",                 
        "q": "1" ,                     
        "r": "0.98",
        "bd":"1549.41",           
        "ak":"1549.42",  
        "bv":"21.737",  
        "av":"19.853"
   },
   {
        "s": "ETHUSDT",
        "la": "0.0025",                 
        "o": "0.0010",                 
        "h": "0.0025",                 
        "l": "0.0010",                 
        "b": "10000",                 
        "q": "1" ,                     
        "r":"0.98",
        "bd":"1549.41",           
        "ak":"1549.42",  
        "bv":"21.737",  
        "av":"19.853"               
   }
  ]
}