Skip to main content

24hr Ticker Price Change Statistics

Type: NONE

External endpoint: GET /fapi/v1/ticker/24hr
Rocky impl: GET /v1/markets/{symbol}/ticker

Most-recent trade price plus 24-hour high/low/volume aggregates.

Request

GET /v1/markets/{symbol}/ticker

Response — 200

{
"symbol": "BTC-PERP",
"last_price": "76521.34",
"mark_price": "76538.12",
"high_24h": "77400.00",
"low_24h": "75890.50",
"volume_24h": "118.4521",
"ts_ms": 1748275200000
}
FieldTypeNotes
last_pricestring | nullMost recent trade.
mark_pricestring | nullOracle mark used for funding/PnL.
high_24h / low_24hstring | nullAggregated from ledger.trades over the last 24 hours.
volume_24hstringBase-asset volume sum.

Rocky returns a small subset of the standard ticker/24hr fields. priceChange, priceChangePercent, weightedAvgPrice, openPrice, quoteVolume, firstId, lastId, count are not yet returned — clients that need them should derive from candles / trade history.