查询当前跟单信息
限速规则: 5次/秒/UID
HTTP请求
- GET /api/v2/copy/spot-follower/query-current-orders
请求示例
curl "https://api.bitget.com/api/v2/copy/spot-follower/query-current-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": 1695809370190,
"data": {
"endId": "1",
"trackingList": [
{
"trackingNo": "1",
"traderId": "**********",
"buyFillSize": "0.0317",
"buyDelegateSize": "0.0317190800000000",
"buyPrice": "34870.7",
"unrealizedPL": "-0.77945295",
"buyTime": "1695729895491",
"buyFee": "-0.00001908",
"unrealizedPLR": "-0.07",
"symbol": "BTCUSDT",
"stopSurplusPrice": null,
"stopLossPrice": null
}
]
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
trackingList | list | 跟单集合 |
> trackingNo | String | 跟踪订单号 |
> traderId | String | 交易员uid |
> buyFillSize | String | 买入成交数量 |
> buyDelegateSize | String | 买入委托数量 |
> buyPrice | String | 买入价格 |
> unrealizedPL | String | 当前未实现盈亏 |
> buyTime | String | 买入时间 |
> buyFee | String | 买入手续费 |
> unrealizedPLR | String | 当前未实现盈亏收益率,若值为11.11,则代表11.11% |
> symbol | String | 交易对 |
> stopSurplusPrice | String | 止盈价格 |
> stopLossPrice | String | 止损价格 |
endId | String | 最后的数据id。id值为跟踪单号,用于根据id查询 |