Get 24h Ticker
Get 24-hour ticker statistics for futures symbols, including price changes, volume, and trading activity.
HTTP Request
GET /api/v1/future/market/24h-ticker
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | No | Trading pair symbol (e.g., BTCUSDT). If omitted, returns all symbols |
Request Example
Single Symbol Request
curl -X GET "https://open-api.bydoxe.com/api/v1/future/market/24h-ticker?symbol=BTCUSDT"
All Symbols Request
curl -X GET "https://open-api.bydoxe.com/api/v1/future/market/24h-ticker"
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | string | Response code |
| msg | string | Response message |
| requestTime | number | Request timestamp in milliseconds |
| data | object/array | Response data (object for single symbol, array for all) |
| > symbol | string | Trading pair symbol |
| > priceChange | string | Absolute price change in the last 24 hours |
| > priceChangePercent | string | Price change percentage in the last 24 hours |
| > weightedAvgPrice | string | Weighted average price in the last 24 hours |
| > lastPrice | string | Most recent trade price |
| > lastQty | string | Quantity of the most recent trade |
| > openPrice | string | Opening price 24 hours ago |
| > highPrice | string | Highest price in the last 24 hours |
| > lowPrice | string | Lowest price in the last 24 hours |
| > volume | string | Total trading volume in base asset |
| > quoteVolume | string | Total trading volume in quote asset |
| > openTime | number | Open time timestamp in milliseconds |
| > closeTime | number | Close time timestamp in milliseconds |
| > firstId | number | First trade ID in the 24-hour period |
| > lastId | number | Last trade ID in the 24-hour period |
| > count | number | Total number of trades in the 24-hour period |
Response Example
Success Response (Single Symbol)
{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": {
"symbol": "BTCUSDT",
"priceChange": "-4421.40",
"priceChangePercent": "-4.622",
"weightedAvgPrice": "92231.58",
"lastPrice": "91233.30",
"lastQty": "0.012",
"openPrice": "95654.70",
"highPrice": "96012.20",
"lowPrice": "89012.00",
"volume": "271788.786",
"quoteVolume": "25067509066.99",
"openTime": 1763372880000,
"closeTime": 1763459280833,
"firstId": 6886513205,
"lastId": 6894698384,
"count": 8174196
}
}
Success Response (All Symbols)
{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": [
{
"symbol": "BTCUSDT",
"priceChange": "-4421.40",
"priceChangePercent": "-4.622",
"weightedAvgPrice": "92231.58",
"lastPrice": "91233.30",
"lastQty": "0.012",
"openPrice": "95654.70",
"highPrice": "96012.20",
"lowPrice": "89012.00",
"volume": "271788.786",
"quoteVolume": "25067509066.99",
"openTime": 1763372880000,
"closeTime": 1763459280833,
"firstId": 6886513205,
"lastId": 6894698384,
"count": 8174196
}
]
}
Error Codes
| Code | Message |
|---|---|
| 40034 | symbol does not exist |
| 50010 | Upstream response invalid |