Skip to main content
GET
/
ticker
/
{symbol}
Get market statistics
curl --request GET \
  --url https://exchange-api2.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,
  "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

timestamp
integer<int64>

Timestamp in milliseconds