Skip to main content

24hr Ticker Price Change

Retrieve 24hr market statistics. Time is measured in hours; price changes are calculated over a window of approximately 24 to 25 hours. Data refreshes every minute.

The symbol, symbols, and types parameters are mutually exclusive. The isFull parameter controls whether the full or simple response shape is returned.

OptionsExample
No parameter/ticker/24hr
symbol/ticker/24hr?symbol=BTC-USDT
symbols/ticker/24hr?symbols=["BTC-USDT","ETH-USDT","BTC-PERP-USDT"]
types/ticker/24hr?types=["Spot"]
isFull/ticker/24hr?isFull=false

Request Parameters​

NameTypeRequiredDescription
symbolStringNoSymbol
symbolsStringNoMultiple symbols
typesStringNoMultiple types
isFullBooleanNoWhen true, return full response (24HrTickerPriceChangeFullResponse). When false, return simple response (24HrTickerPriceChangeResponse).

Response Content​

Successful response

example
GEThttps://api.btse.com/public-api/market/v1/ticker/24hr

Response

{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"symbol": "BTC-USDT",
"lastPrice": "20875.31000000",
"openPrice": "21323.78000000",
"highPrice": "21346.44000000",
"lowPrice": "20838.59000000",
"amount": "4.12750830",
"volume": "99151.67492000",
"openTime": 1667696772705,
"closeTime": 1667783172705,
"priceChange": "-448.47000000",
"priceChangePercent": "-2.103",
"prevClosePrice": "21324.77000000",
"bidPrice": "20875.00000000",
"bidQty": "0.03478000",
"askPrice": "20875.77000000",
"askQty": "0.01129000"
}
]
}