查询历史跟单信息
限速规则: 5次/秒/UID
HTTP请求
- GET /api/v2/copy/spot-follower/query-history-orders
请求示例
curl "https://api.bitget.com/api/v2/copy/spot-follower/query-history-orders" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
symbol | String | 否 | 交易对 |
traderId | String | 否 | 交易员id |
idLessThan | String | 否 | 请求此ID之前 |
idGreaterThan | String | 否 | 请求此ID之后 |
startTime | String | 否 | 开始时间戳 Unix时间戳的毫秒数格式,如 1597026383085(时间跨度最大支持三个月,若不传结束时间,则默认结束时间为三个月。) |
endTime | String | 否 | 结束时间戳 Unix时间戳的毫秒数格式,如 1597026383085(时间跨度最大支持三个月,若不传开始时间,则默认开始时间为三个月。) |
limit | String | 否 | 默认20条,最大支持50条。超过将返回20条 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1695811537460,
"data": {
"endId": "1",
"trackingList": [
{
"trackingNo": "1",
"traderId": "**********",
"fillSize": "0.0316",
"buyPrice": "34870.7",
"sellPrice": "34865.5",
"buyFee": "-0.00001902",
"sellFee": "-0.66104988",
"achievedPL": "-0.82756",
"achievedPLR": "-0.07",
"symbol": "BTCUSDT",
"buyTime": "1695729617968",
"sellTime": "1695729886269"
}
]
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
trackingList | list | 跟单集合 |
> trackingNo | String | 跟踪订单号 |
> traderId | String | 交易员uid |
> fillSize | String | 成交数量 |
> buyPrice | String | 买入价格 |
> sellPrice | String | 卖出均价 |
> achievedPL | String | 已实现盈亏收益 |
> buyTime | String | 买入时间 |
> sellTime | String | 卖出时间 |
> buyFee | String | 买入手续费 |
> sellFee | String | 卖出手续费 |
> achievedPLR | String | 已实现盈亏收益率若值为11.11,则代表11.11% |
> symbol | String | 交易对 |
endId | String | 最后的数据id。id值为跟踪单号,用于根据id查询 |