獲取市場成交
HTTP 請求
GET /futures/deals
請求參數
參數名 | 是否必須 | 類型 | 說明 |
---|---|---|---|
market | true | string | 市場名稱 |
limit | false | int | 交易資料條數。 預設100,最大值為1000. |
last_id | false | int | 查詢的交易ID 的起點,0 表示從最新記錄開始獲取 |
請求回應
參數名 | 類型 | 說明 |
---|---|---|
deal_id | int | deal id |
created_at | int | 成交時間戳記(毫秒) |
side | string | taker方向,"buy"或"sell" |
price | string | 成交價格 |
amount | string | 成交數量 |
請求範例
GET /futures/deals?market=BTCUSDT
回應範例
{
"code": 0,
"data": [
{
"deal_id": 3514376759,
"created_at": 1689152421692,
"side": "buy",
"price": "30718.42",
"amount": "0.00000325"
},
{
"deal_id": 3514376758,
"created_at": 1689152421692,
"side": "buy",
"price": "30718.42",
"amount": "0.00015729"
},
{
"deal_id": 3514376757,
"created_at": 1689152421692,
"side": "sell",
"price": "30718.42",
"amount": "0.00154936"
}
],
"message": "OK"
}