跳到主要内容

近期成交列表

获取指定交易对的近期成交信息,默认返回最近500条成交信息。

HTTP请求

  • GET /api/v3/trades

权重(IP): 5

请求参数

参数名数据类型是否必须说明取值范围
symbolstring交易对名称如:BTCUSDT
limitinteger返回的条数默认 500; 最大 1000

返回参数

参数名说明
id成交id
price价格
qty数量
quoteQty成交额
time成交时间
isBuyerMaker是否为maker单
isBestMatch是否为最佳匹配
tradeType交易类型

响应

[
{
"id": null,
"price": "63530",
"qty": "0.00317906",
"quoteQty": "201.96568180",
"time": 1781226399689,
"isBuyerMaker": true,
"isBestMatch": true,
"tradeType": "ASK"
},
{
"id": null,
"price": "63530",
"qty": "0.00100644",
"quoteQty": "63.93913320",
"time": 1781226399688,
"isBuyerMaker": true,
"isBestMatch": true,
"tradeType": "ASK"
},
{
"id": null,
"price": "63529.99",
"qty": "0.00232318",
"quoteQty": "147.5916021682",
"time": 1781226399687,
"isBuyerMaker": true,
"isBestMatch": true,
"tradeType": "ASK"
}
]