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
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| symbol | path | string | Yes | Futures trading pair, e.g. BTCUSDT |
Request Example
GET /api/v1/futures/open-api/ticker/BTCUSDT
Response Fields
| Field | Type | Description |
|---|---|---|
| symbol | string | Futures trading pair |
| open | string | 24h open price |
| high | string | 24h high price |
| low | string | 24h low price |
| close | string | Latest trade price |
| volume | string | 24h volume (base asset, e.g. BTC) |
| quoteVolume | string | 24h quote volume (quote asset, e.g. USDT) |
| tradeCount | int64 | 24h trade count |
| priceChange | string | 24h price change (absolute) |
| priceChangePct | string | 24h change percent |
| weightedAvgPrice | string | 24h weighted average price |
| updateTime | int64 | Update 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
}
}