跳轉至

WS / 成交頻道

地址/ws/v1/市場

頻道名稱

trade

提交參數

參數名 是否必需 類型 範例 說明
op string sub 操作,sub:訂閱 unsub:退訂
channel string trade 頻道名稱
symbol string BTC-USDT 交易對名稱

提交範例

JSON
{
  "op":"sub",
  "channel": "trade",
  "symbol": "BTC-USDT"
}

返回參數

參數名 是否必填 類型 範例 說明
channel string trade 頻道名
symbol string BTC-USDT 交易對
id long 17592256642623 成交id
amount string 0.04 成交數量
price number 1997 成交價格
direction string buy buy:買,sell:賣
time number 1502448920106 成交時間(時間戳(毫秒))
ts long 1597026383085 資料產生時間,毫秒級時間戳

返回範例

JSON
{
  "channel": "trade",
  "symbol": "BTC-USDT",
  "id": 17592256642623,
  "amount": "0.04",
  "price": 1997,
  "direction": "buy",
  "time": 1502448920106,
  "ts": 1502448920106
}