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
}
| Field | Type | Notes |
|---|---|---|
last_price | string | null | Most recent trade. |
mark_price | string | null | Oracle mark used for funding/PnL. |
high_24h / low_24h | string | null | Aggregated from ledger.trades over the last 24 hours. |
volume_24h | string | Base-asset volume sum. |
Rocky returns a small subset of the standard
ticker/24hrfields.priceChange,priceChangePercent,weightedAvgPrice,openPrice,quoteVolume,firstId,lastId,countare not yet returned — clients that need them should derive from candles / trade history.