Skip to main content

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

ParameterTypeRequiredDescription
symbolstringNoTrading 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

ParameterTypeDescription
codestringResponse code
msgstringResponse message
requestTimenumberRequest timestamp in milliseconds
dataobject/arrayResponse data (object for single symbol, array for all)
> symbolstringTrading pair symbol
> priceChangestringAbsolute price change in the last 24 hours
> priceChangePercentstringPrice change percentage in the last 24 hours
> weightedAvgPricestringWeighted average price in the last 24 hours
> lastPricestringMost recent trade price
> lastQtystringQuantity of the most recent trade
> openPricestringOpening price 24 hours ago
> highPricestringHighest price in the last 24 hours
> lowPricestringLowest price in the last 24 hours
> volumestringTotal trading volume in base asset
> quoteVolumestringTotal trading volume in quote asset
> openTimenumberOpen time timestamp in milliseconds
> closeTimenumberClose time timestamp in milliseconds
> firstIdnumberFirst trade ID in the 24-hour period
> lastIdnumberLast trade ID in the 24-hour period
> countnumberTotal 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

CodeMessage
40034symbol does not exist
50010Upstream response invalid