Skip to content

Description

24hr rolling window mini-ticker statistics for all symbols. These are NOT the statistics of the UTC day, but a 24hr rolling window from requestTime to 24hrs before.

Request Parameters

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

request example:

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

Push Parameters

ParameterTypeDescription
chStringChannel name
symbolStringProduct ID E.g. ETHUSDT
tsint64Time stamp
dataList<String>Subscription data
> oStringOpening price
> hStringHighest price
> lStringLowest price
> laStringLast price
> bStringTrading volume of the coin
> qStringTrading volume of quote currency
> rString24-hour fluctuations

push data:

json
{ 
  "ch": "ticker",                   
  "symbol": "BNBUSDT",
  "ts": 1732178884994,
  "data":{
        "la": "0.0025",                 
        "o": "0.0010",                 
        "h": "0.0025",                 
        "l": "0.0010",                 
        "b": "10000",                 
        "q": "1" ,                     
        "r":"0.98"                    
   }   
}