satang-api
  • Introduction
  • Authentication
  • Sign Request Example
    • Javascript
    • Python
    • Golang
  • APIs
    • Public
      • Orders
    • Private
      • Deposits
      • Crypto Deposits
      • User/Wallet
      • Orders
    • Portal (Obsoleted)
  • APIs V3
    • General information
      • Kline Chart Interval
      • Authorization
        • Endpoint Security types
    • Public
      • Exchange Information
      • Depth
      • Kline/Candlestick data
      • Ticker
      • Aggregate trade
    • Private
      • Orders
      • Listen Key
    • Websockets
      • General WSS information
      • User Data Streams
      • Streams
        • Aggregate trade
        • Depth
        • Kline
        • Ticker
  • Satang.pro SDK
Powered by GitBook
On this page

Was this helpful?

  1. APIs V3
  2. Websockets
  3. Streams

Ticker

All Market Mini Tickers

24 Hours price statistics for all symbols

Stream Name: !miniTicker@arr or !miniTicker@arr@3000ms

Update Speed: 1000ms or 3000ms

[
  {
    "E": 1591838562911,         // Event time
    "e": "24hrMiniTicker",      // Event type
    "s": "btc_thb",             // Symbol
    "c": "306455.28",           // Close price
    "h": "307000",              // Highest price
    "l": "302081",              // Lowest price
    "o": "305992.53378218",     // Open price
    "q": "44626761.87468288",   // Total traded quote asset volume
    "v": "146.54558409"         // Total traded base asset volume
  },
  {
    "E": 1591838562910,
    "e": "24hrMiniTicker",
    "s": "eth_thb",
    "c": "7600",
    "h": "7698",
    "l": "7516.02",
    "o": "7610.56343608",
    "q": "13184534.95981676",
    "v": "1736.31444217"
  },
  {
    "E": 1591838562912,
    "e": "24hrMiniTicker",
    "s": "usdt_thb",
    "c": "31.05",
    "h": "31.39",
    "l": "30.91",
    "o": "31.28995838",
    "q": "7319980.20784909",
    "v": "234992.01862853"
  }
]

PreviousKlineNextSatang.pro SDK

Last updated 4 years ago

Was this helpful?