24hr Ticker Statistics
GET
/api/v1/public/ticker/24hr24-Hour Ticker Statistics provides a summary of trading activity for a specific trading pair over the past 24 hours on our platform.
请求参数
示例代码
Responses
The trading pair symbol, representing the assets being traded.
The type of trading pair (e.g., "SPOT" for spot trading).
The timestamp when the 24-hour period started.
The opening price of the trading pair within the 24-hour period.
The highest price observed during the 24-hour period.
The lowest price observed during the 24-hour period.
The closing price of the trading pair within the 24-hour period.
The total trading volume in terms of base token for the trading pair within the 24-hour period.
The total number of trades executed for the trading pair within the 24-hour period.
The timestamp when the 24-hour period ended.
The total trading volume in terms of the quote asset within the 24-hour period.
The volume of the base asset bought by takers within the 24-hour period.
The volume of the quote asset bought by takers within the 24-hour period.
{
"symbol": "WBTCUSDC",
"type": "SPOT",
"openTime": "1728532800000",
"openPrice": "61072.96",
"highPrice": "61072.96",
"lowPrice": "61072.96",
"closePrice": "61072.96",
"volume": "0.0001",
"trades": "1",
"closeTime": "1728619199999",
"quoteVolume": "6.107296",
"takerBuyBaseVolume": "0.0001",
"takerBuyQuoteVolume": "0"
}