交易员获取当前带单
限频规则: 5次/秒/UID
HTTP请求
- GET /api/v2/copy/mix-trader/order-current-track
请求示例
curl "https://api.bitget.com/api/v2/copy/mix-trader/order-current-track?symbol=BTCUSDT&productType=usdt-futures&limit=20" \
-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 | 否 | 交易对 eg: BTCUSDT |
productType | String | 是 | 产品类型USDT-FUTURES USDT专业合约COIN-FUTURES 混合合约USDC-FUTURES USDC专业合约 |
startTime | String | 否 | 开始时间戳 (跟单创建时间) Unix时间戳的毫秒数格式,如 1597026383085 (时间跨度最大支持三个月,若不传结束时间,则默认结束时间为三个月。) |
endTime | String | 否 | 结束时间戳 默认当前时间 (跟单创建时间) Unix时间戳的毫秒数格式,如 1597026383085 (时间跨度最大支持三个月,若不传开始时间,则默认开始时间为三个月。) |
limit | String | 否 | 查询条数,默认为20条,最大支持50条。 |
idGreaterThan | String | 否 | 根据 endId 往前分页查询 |
idLessThan | String | 否 | 根据 endId 往后分页查询 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1695801601016,
"data": {
"trackingList": [
{
"trackingNo": "1231231231",
"openOrderId": "123123123123",
"symbol": "BTCUSDT",
"posSide": "long",
"openLeverage": "20",
"openPriceAvg": "26248.9",
"openTime": "1695801595658",
"openSize": "0.1000000000000000",
"presetStopSurplusPrice": "27561.34",
"presetStopLossPrice": "25855.16",
"openFee": "-2.62489",
"followCount": "1"
}
],
"endId": "1"
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
trackingList | List | 跟踪订单列表 |
> trackingNo | String | 跟踪订单号 |
> symbol | String | 交易对 |
> posSide | String | 仓位方向, long , short |
> openOrderId | String | 开单订单号 |
> openLeverage | String | 开单杠杆倍数 |
> openPriceAvg | String | 开单成交价均价 |
> openTime | String | 开单时间 |
> openSize | String | 开单数量 |
> presetStopSurplusPrice | String | 预设止盈价 |
> presetStopLossPrice | String | 预设止损价 |
> openFee | String | 开仓价格 |
> followCount | String | 当前带单跟单人数 |
endId | String | 分页参数 |