Skip to main content

Ticker Stream

Subscribe to the 24-hour ticker snapshot for a specified futures trading pair.

  • Channel Format: ticker@{symbol}
  • Push Frequency: 500 ms throttled
  • Access: Public

Subscribe Request

{
"op": "subscribe",
"args": ["ticker@BTC_USDT"]
}

Unsubscribe

{
"op": "unsubscribe",
"args": ["ticker@BTC_USDT"]
}

Push Example

{
"ch": "ticker@BTC_USDT",
"d": {
"s": "BTC_USDT",
"lp": "49000.50",
"lq": "0.01",
"o": "50000",
"h": "51000",
"l": "48500",
"v": "1234.5678",
"qv": "61234567.89",
"c": "-1000",
"cp": "-2.00",
"bb": "48999",
"ba": "49001",
"t": 1768205315166
}
}

Push Fields

FieldTypeDescription
sstringTrading pair
lpstringLast traded price
lqstringLast traded quantity
ostring24-hour open price
hstring24-hour high price
lstring24-hour low price
vstring24-hour volume (base asset)
qvstring24-hour turnover (quote asset)
cstring24-hour price change
cpstring24-hour price change percentage
bbstringBest bid price
bastringBest ask price
tnumberTimestamp (milliseconds)