Skip to main content
Version: V3

Get 24h Ticker Statistics

  • GET /api/v3/market/ticker/24hr

Weight(IP): 2

Request parameters

ParameterTypeRequired?Description
symbolStringNoSingle trading pair (mutually exclusive with symbols).
symbolsArrayNoMultiple trading pairs. Accepts comma-separated values or a JSON array.

Request example

curl "https://api-spot.weex.com/api/v3/market/ticker/24hr?symbols=%5B%5C"BTCUSDT%5C",%5C"ETHUSDT%5C"%5D"

Response parameters

FieldTypeDescription
symbolStringTrading pair.
priceChangeStringAbsolute price change over the last 24 hours.
priceChangePercentStringPercentage price change over the last 24 hours.
lastPriceStringLast traded price.
bidPriceStringBest bid price.
bidQtyStringBest bid quantity.
askPriceStringBest ask price.
askQtyStringBest ask quantity.
openPriceStringOpening price 24 hours ago.
highPriceStringHighest price in the last 24 hours.
lowPriceStringLowest price in the last 24 hours.
volumeStringBase asset volume in the last 24 hours.
quoteVolumeStringQuote asset volume in the last 24 hours.
openTimeLongFirst trade timestamp in the 24h window (ms).
closeTimeLongLast trade timestamp in the 24h window (ms).
countLongNumber of trades in the 24h window.

When symbol is provided, the endpoint returns a single object; otherwise, it returns an array of objects.

Response example

[
{
"symbol": "BTCUSDT",
"priceChange": "-350.50",
"priceChangePercent": "-0.0051",
"lastPrice": "68920.40",
"bidPrice": "68919.90",
"bidQty": "2.480",
"askPrice": "68920.70",
"askQty": "1.375",
"openPrice": "69270.90",
"highPrice": "70110.00",
"lowPrice": "68500.10",
"volume": "1524.361",
"quoteVolume": "105060432.75",
"openTime": 1764412800000,
"closeTime": 1764499200000,
"count": 98642
}
]