跳到主要内容

交易员获取当前带单

限频规则: 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"

请求参数

参数名参数类型是否必须描述
symbolString交易对 eg: BTCUSDT
productTypeString产品类型
USDT-FUTURES USDT专业合约
COIN-FUTURES 混合合约
USDC-FUTURES USDC专业合约
startTimeString开始时间戳
(跟单创建时间)
Unix时间戳的毫秒数格式,如 1597026383085
(时间跨度最大支持三个月,若不传结束时间,则默认结束时间为三个月。)
endTimeString结束时间戳 默认当前时间
(跟单创建时间)
Unix时间戳的毫秒数格式,如 1597026383085
(时间跨度最大支持三个月,若不传开始时间,则默认开始时间为三个月。)
limitString查询条数,默认为20条,最大支持50条。
idGreaterThanString根据 endId 往前分页查询
idLessThanString根据 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"
}
}

返回参数

返回字段参数类型字段说明
trackingListList跟踪订单列表
> trackingNoString跟踪订单号
> symbolString交易对
> posSideString仓位方向, long, short
> openOrderIdString开单订单号
> openLeverageString开单杠杆倍数
> openPriceAvgString开单成交价均价
> openTimeString开单时间
> openSizeString开单数量
> presetStopSurplusPriceString预设止盈价
> presetStopLossPriceString预设止损价
> openFeeString开仓价格
> followCountString当前带单跟单人数
endIdString分页参数