Skip to main content

Get Current Tracking Orders

Get the list of current (open) tracking orders for the trader.

HTTP Request

GET /api/v1/copy/mix-trader/order-current-track

Request Parameters

ParameterTypeRequiredDescription
productTypestringYesProduct type. Only FUSD is supported
symbolstringNoTrading pair symbol (e.g., BTCUSDT)
startTimestringNoStart time in milliseconds
endTimestringNoEnd time in milliseconds
limitstringNoNumber of results per request. Default: 20, Max: 50
idLessThanstringNoFilter results with ID less than this value
idGreaterThanstringNoFilter results with ID greater than this value

Request Example

curl -X GET "https://open-api.bydoxe.com/api/v1/copy/mix-trader/order-current-track?productType=FUSD&symbol=BTCUSDT&startTime=1763372880000&endTime=1763459280000&limit=20" \
-H "ACCESS-KEY: your-api-key" \
-H "ACCESS-SIGN: your-signature" \
-H "ACCESS-PASSPHRASE: your-passphrase" \
-H "ACCESS-TIMESTAMP: 1659076670000" \
-H "Content-Type: application/json"

Response Parameters

ParameterTypeDescription
codestringResponse code
msgstringResponse message
requestTimenumberRequest timestamp in milliseconds
dataobjectResponse data
> trackingListarrayList of tracking orders
>> openOrderIdstringOpen order ID
>> symbolstringTrading pair symbol
>> posSidestringPosition side (LONG/SHORT)
>> openLeveragestringLeverage used for opening
>> openPriceAvgstringAverage open price
>> openTimestringOpen time in milliseconds
>> openSizestringOpen position size
>> presetStopSurplusPricestringPreset take profit price
>> presetStopLossPricestringPreset stop loss price
>> openFeestringOpen fee
>> followCountstringNumber of followers on this position
> endIdstringLast ID for pagination

Response Example

{
"code": "00000",
"msg": "success",
"requestTime": 1763459280000,
"data": {
"trackingList": [
{
"openOrderId": "123456789",
"symbol": "BTCUSDT",
"posSide": "LONG",
"openLeverage": "10",
"openPriceAvg": "40000.00",
"openTime": "1763372880000",
"openSize": "0.5",
"presetStopSurplusPrice": "42000.00",
"presetStopLossPrice": "38000.00",
"openFee": "2.00",
"followCount": "5"
}
],
"endId": "123456789"
}
}

Error Codes

CodeMessage
45001Parameter productType cannot be empty
45001Invalid productType
45002User not found
45003Not a copy trader
50000System error