Skip to main content

Full ticker

GET: /v1/spot/public/ticker

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

Java
public String price(){

}
Response
{
"code": 200,
"msg": "SUCCESS",
"msgInfo": [],
"data": [
{
"s": "btc_usdt", //symbol
"t": 1662444879425, //update time
"cv": "0.00", //change value
"cr": "0.0000", //change rate
"o": "200.00", //open
"l": "200.00", //low
"h": "200.00", //high
"c": "200.00", //close
"q": "0.002", //quantity
"v": "0.40", //volume
"ap": null, //asks price(sell one price)
"aq": null, //asks qty(sell one quantity)
"bp": null, //bids price(buy one price)
"bq": null //bids qty(buy one quantity)
}
]
}