> For the complete documentation index, see [llms.txt](https://satangdev.gitbook.io/satang-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://satangdev.gitbook.io/satang-api/apis-v3/websockets/streams/mini-ticker.md).

# Ticker

## All Market Mini Tickers

24 Hours price statistics for all symbols

{% tabs %}
{% tab title="Stream Info" %}
**Stream Name:** `!miniTicker@arr` or `!miniTicker@arr@3000ms`

**Update Speed:** 1000ms or 3000ms
{% endtab %}

{% tab title="Payload" %}

```
[
  {
    "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"
  }
]
```

{% endtab %}
{% endtabs %}
