Ticker Channel

Channel name : ticker

Description : Get the latest transaction price, buy price, sell price and 24-hour trading volume information of the product, push frequency 500ms~ 1s

Subscription requests :

{
  "op": "subscribe",
  "args": [
    {
      "instType": "SPOT",
      "channel": "ticker",
      "instId": "BTCUSDT"
    }
  ]
}

Push data format :

{
  "action": "snapshot",
  "arg": {
    "instType": "SPOT",
    "channel": "ticker",
    "instId": "BTCUSDT"
  },
  "data": [
    {
      "instId": "BTCUSDT",
      "lastPr": "89721.8",
      "open24h": "90540.2",
      "high24h": "91426.7",
      "low24h": "87986.5",
      "change24h": "-0.01321",
      "bidPr": "89738.8",
      "askPr": "89739.3",
      "bidSz": "0.01183",
      "askSz": "0.01243",
      "baseVolume": "0.61829",
      "quoteVolume": "55683.20390",
      "openUtc": "88427.9",
      "changeUtc24h": "0.01463",
      "ts": "1768979090882"
    }
  ]
}

Field description :


FieldTypeExplanation
instIdStringProduct ID, such as BTCUSDT
lastPrStringLatest transaction price
open24hStringOpening price in 24-Hour slide time window
high24hStringHighest price in 24-Hour slide time window
low24hStringLowest price in 24-Hour slide time window
change24hString24-Hour price change rate. 0.01 means 1%
bidPrStringBest bid price
askPrStringBest ask price
bidSzStringThe aggregate order quantity at the best bid price in the current order book.
askSzStringThe aggregate order quantity at the best ask price in the current order book.
baseVolumeString24h volume in base asset
quoteVolumeString24h volume in quote asset
openUtcStringOpening price at UTC 00:00:00
changeUtc24hString
Price change rate from UTC 00:00:00. 0.01 means 1%
tsStringSnapshot timestamp(milliseconds)