Skip to main content
Version: Next

Ticker Subscription

Subscribe to 24-hour market statistics for futures, pushed every second.

Subscription Format

{symbol}@ticker

Subscribe Request

{"action": "subscribe", "streams": ["BTCUSDT@ticker"]}

Push Fields

FieldTypeDescription
eventstringEvent type, fixed as data
streamstringSubscribed stream
channelstringChannel, fixed as ticker
data.symbolstringFutures trading pair
data.lastPricestringLast trade price
data.priceChangestring24h price change (absolute)
data.priceChangePercentstring24h change percent
data.high24hstring24h high
data.low24hstring24h low
data.volume24hstring24h volume
data.timestampint64Data timestamp (milliseconds)
timestampint64Push timestamp (milliseconds)

Push Example

{
"event": "data",
"stream": "BTCUSDT@ticker",
"channel": "ticker",
"timestamp": 1736163000000,
"data": {
"symbol": "BTCUSDT",
"lastPrice": "68620.5",
"priceChange": "1120.5",
"priceChangePercent": "1.66",
"high24h": "69200.5",
"low24h": "67200.0",
"volume24h": "1250.85",
"timestamp": 1736163000000
}
}

Notes

  • Push frequency is once per second
  • Price and quantity fields are string type