Query 24-Hour Market List
Address/openApi/market/24kline
Received Parameters
Submission Method: GET
Example
curl -d /openApi/market/24kline
Submission Parameters
Parameter Name | Required | Type | Example | Description |
---|---|---|---|---|
symbol | No | string | BTC-USDT | Trading pairs, can query the 24-hour market data of multiple trading pairs by separating them with a comma, e.g., BTC-USDT,ETH-USDT,EOS-USDT. If the parameter is not passed, details of all trading pairs will be fetched |
Return Parameters
Parameter Name | Required | Type | Example | Description |
---|---|---|---|---|
errno | Yes | int | 0 | Status code |
errmsg | Yes | success | success | Status information |
result | No | array | See example | Return result |
Result Description
JSON
{
"id": Response id,
"amount": Transaction volume measured in base currency,
"count": 24-hour transaction count,
"open": 24-hour opening price,
"close": 24-hour closing price,
"low": 24-hour lowest price,
"high": 24-hour highest price,
"vol": Trading volume measured in settlement currency
"ask": The highest selling price on the order book
"bid": The lowest ask price in the order book
}
Return Example
JSON
{
"errno":0,
"errmsg":"success",
"result":[
{
"symbol":"BTC-USDT",
"data":{
"id":1564383039,
"amount":"501.58104763207614180517",
"count":21030,
"open":"9510.3854955",
"close":"9611.293874",
"low":"9183.037249591129",
"high":"9722.409967228807",
"vol":"4758286.23",
"ask":"9613",
"bid":"9610"
}
},
{
"symbol":"ETH-USDT",
"data":{
"id":1564383052,
"amount":"16009.212149527699210913",
"count":29174,
"open":"210.117172",
"close":"211.8394075",
"low":"199.2297417116734",
"high":"215.22023539561525",
"vol":"3340147.73",
"ask":"213",
"bid":"209"
}
}
]
}