Skip to main content
Version: Next

24-Hour Ticker

Get 24-hour price change statistics for futures trading pairs.

API Information

  • Method: GET
  • Path: /api/v1/futures/open-api/ticker/{symbol}

Request Parameters

ParameterLocationTypeRequiredDescription
symbolpathstringYesFutures trading pair, e.g. BTCUSDT

Request Example

GET /api/v1/futures/open-api/ticker/BTCUSDT

Response Fields

FieldTypeDescription
symbolstringFutures trading pair
openstring24h open price
highstring24h high price
lowstring24h low price
closestringLatest trade price
volumestring24h volume (base asset, e.g. BTC)
quoteVolumestring24h quote volume (quote asset, e.g. USDT)
tradeCountint6424h trade count
priceChangestring24h price change (absolute)
priceChangePctstring24h change percent
weightedAvgPricestring24h weighted average price
updateTimeint64Update time (milliseconds)

Response Example

{
"code": 200,
"msg": "success",
"data": {
"symbol": "BTCUSDT",
"open": "67500.0",
"high": "69200.5",
"low": "67200.0",
"close": "68620.5",
"volume": "1250.85",
"quoteVolume": "85500000.50",
"tradeCount": 12345,
"priceChange": "1120.5",
"priceChangePct": "1.66",
"weightedAvgPrice": "68350.0",
"updateTime": 1737536400000
}
}