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​

NameTypeDescription
symbolStringSymbol name
lastPriceStringClosing price of the interval
openPriceStringOpening price of the interval
highPriceStringHighest price of the interval
lowPriceStringLowest price of the interval
amountStringTotal base currency amount
volumeStringTotal quote currency volume
openTimeDoubleStarting time of the interval
closeTimeDoubleClosing time of the interval
priceChangeStringDifference between open and last price (lastPrice βˆ’ openPrice)
priceChangePercentStringPercentage of price change (priceChange / openPrice)
prevClosePriceStringPrevious close price
bidPriceStringHighest bid price
bidQtyStringQuantity at highest bid price
askPriceStringLowest ask price
askQtyStringQuantity at lowest ask price
openInterestStringOpen interest in contracts (futures only)
fundingRateStringFunding rate (futures only)
nextFundingTimeDoubleNext funding time (futures only)
fundingIntervalMinutesDoubleFunding interval in minutes (futures only)
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"
}
]
}