Get 24hr Stats

Request via this endpoint to get the statistics of the specified ticker in the last 24 hours.

HTTP REQUEST

GET /api/v1/market/stats

Example

GET /api/v1/market/stats?symbol=BTC-USDT

//Get 24hr Stats
{
  "time": 1602832092060, // time
  "symbol": "BTC-USDT", // symbol
  "buy": "11328.9", // bestAsk
  "sell": "11329", // bestBid
  "changeRate": "-0.0055", // 24h change rate
  "changePrice": "-63.6", // 24h change price
  "high": "11610", // 24h highest price
  "low": "11200", // 24h lowest price
  "vol": "2282.70993217", // 24h volume,the aggregated trading volume in BTC
  "volValue": "25984946.157790431", // 24h total, the trading volume in quote currency of last 24 hours
  "last": "11328.9", // last price
  "averagePrice": "11360.66065903", // 24h average transaction price yesterday
  "takerFeeRate": "0.001", // Basic Taker Fee
  "makerFeeRate": "0.001", // Basic Maker Fee
  "takerCoefficient": "1", // Taker Fee Coefficient
  "makerCoefficient": "1" // Maker Fee Coefficient
}
REQUEST URL

This endpoint support Spot URL

REQUEST RATE LIMIT

Public weight:15

PARAMETERS
Param Type Mandatory Description
symbol String Yes symbol
RESPONSES
Param Description
time timestamp
symbol Symbol
buy Best bid price
sell Best ask price
changeRate 24h change rate
changePrice 24h change price
high Highest price in 24h
low Lowest price in 24h
vol 24h volume, executed based on base currency
volValue 24h traded amount
last Last traded price
averagePrice Average trading price in the last 24 hours
takerFeeRate Basic Taker Fee
makerFeeRate Basic Maker Fee
takerCoefficient Taker Fee Coefficient
makerCoefficient Maker Fee Coefficient