MiniTicker Array Push
Subscribe to 24-hour compact market statistics for all trading pairs. Data is pushed every 3000ms as a full snapshot.
Stream Format
!miniTicker@arr@3000ms
Subscribe Request
{
"action": "subscribe",
"streams": ["!miniTicker@arr@3000ms"]
}
Subscribe Response
{
"event": "subscribed",
"channel": "miniTickerArr",
"message": "订阅成功: !miniTicker@arr@3000ms",
"time": 1719290000000
}
| Field | Type | Description |
|---|---|---|
| event | string | Always subscribed |
| channel | string | Always miniTickerArr |
| message | string | Informational message |
| time | int64 | Timestamp (milliseconds) |
Push Data
Top-level Fields
| Field | Type | Description |
|---|---|---|
| event | string | Always data |
| channel | string | Always miniTickerArr |
| data | array | Array of MiniTickerItem for all pairs |
| time | int64 | Push timestamp (milliseconds) |
data[] Item Fields
| Field | Type | Description |
|---|---|---|
| s | string | Symbol, e.g. BTCUSDT |
| c | string | Latest price (close) |
| o | string | Open price |
| h | string | 24h high price |
| l | string | 24h low price |
| v | string | 24h volume |
| P | string | Price change %, 4 decimal places |
| E | int64 | Item timestamp (milliseconds) |
Push Example
{
"event": "data",
"channel": "miniTickerArr",
"data": [
{
"s": "BTCUSDT",
"c": "65000.00",
"o": "63000.00",
"h": "66000.00",
"l": "62000.00",
"v": "1234.5678",
"P": "3.1746",
"E": 1719290000000
}
],
"time": 1719290000000
}