跳转至

WS / 成交频道

地址/ws/v1/market

频道名称

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
}