Skip to main content

Get 24h statistics ticker

GET: /v1/spot/public/ticker/24h

Parameters

ParameterTypemandatoryDefaultDescriptionRanges
symbolstringfalsetrading pair eg:btc_usdt
symbolsarrayfalseCollection of trading pairs. Priority is higher than symbol. eg: btc_usdt,eth_usdt
tagsarrayfalseSet of tags, separated by commas, currently only supports spot

Limit Flow Rules

  1. single symbol:10/s/ip

  2. multiple symbols:10/s/ip

Response
{
"code": 200,
"msg": "SUCCESS",
"msgInfo": [],
"data": [
{
"s": "btc_usdt", //symbol
"t": 1661856036925, //time
"cv": "0.0000", //price change value
"cr": "0.00", //price change rate
"o": "9000.0000", //open price
"l": "9000.0000", //lowest price
"h": "9000.0000", //highest price
"c": "9000.0000", //close price
"q": "0.0136", //transaction quantity
"v": "122.9940" //transaction volume
}
]
}