Skip to main content
GET
/
ticker
/
{symbol}
Get market statistics
curl --request GET \
  --url https://exchange-api.bulk.trade/api/v1/ticker/{symbol}
{
  "symbol": "<string>",
  "priceChange": 123,
  "priceChangePercent": 123,
  "lastPrice": 123,
  "highPrice": 123,
  "lowPrice": 123,
  "volume": 123,
  "quoteVolume": 123,
  "markPrice": 123,
  "oraclePrice": 123,
  "openInterest": 123,
  "fundingRate": 123,
  "regime": 123,
  "regimeDt": 123,
  "regimeVol": 123,
  "regimeMv": 123,
  "fairBookPx": 123,
  "fairVol": 123,
  "fairBias": 123,
  "timestamp": 123
}
Returns 24-hour statistics for a specific symbol including price changes, volume, mark price, and funding rate. For real-time ticker updates, use the WebSocket ticker stream which updates every 200ms.

Path Parameters

symbol
string
required

Market symbol

Example:

"BTC-USD"

Response

Successful response

24-hour market statistics

symbol
string
priceChange
number

Absolute price change (24h)

priceChangePercent
number

Percentage price change (24h)

lastPrice
number

Last traded price

highPrice
number

24h high

lowPrice
number

24h low

volume
number

24h volume (base currency)

quoteVolume
number

24h volume (quote currency)

markPrice
number

Fair value price (for margin calculations)

oraclePrice
number

External reference price

openInterest
number

Total open positions (base currency)

fundingRate
number

Current funding rate

regime
integer

Market regime indicator (-1, 0, 1)

regimeDt
integer

Regime duration in 10s intervals

regimeVol
number

Regime-adjusted volatility

regimeMv
number

Regime mean value

fairBookPx
number

Fair price derived from order book

fairVol
number

Fair volatility estimate

fairBias
number

Fair price bias

timestamp
integer<int64>

Timestamp (nanoseconds)