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
| Parameter | Type | Required | Description |
|---|---|---|---|
| productType | string | Yes | Product type. Only FUSD is supported |
| symbol | string | No | Trading pair symbol (e.g., BTCUSDT) |
| startTime | string | No | Start time in milliseconds |
| endTime | string | No | End time in milliseconds |
| limit | string | No | Number of results per request. Default: 20, Max: 50 |
| idLessThan | string | No | Filter results with ID less than this value |
| idGreaterThan | string | No | Filter 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
| Parameter | Type | Description |
|---|---|---|
| code | string | Response code |
| msg | string | Response message |
| requestTime | number | Request timestamp in milliseconds |
| data | object | Response data |
| > trackingList | array | List of tracking orders |
| >> openOrderId | string | Open order ID |
| >> symbol | string | Trading pair symbol |
| >> posSide | string | Position side (LONG/SHORT) |
| >> openLeverage | string | Leverage used for opening |
| >> openPriceAvg | string | Average open price |
| >> openTime | string | Open time in milliseconds |
| >> openSize | string | Open position size |
| >> presetStopSurplusPrice | string | Preset take profit price |
| >> presetStopLossPrice | string | Preset stop loss price |
| >> openFee | string | Open fee |
| >> followCount | string | Number of followers on this position |
| > endId | string | Last 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
| Code | Message |
|---|---|
| 45001 | Parameter productType cannot be empty |
| 45001 | Invalid productType |
| 45002 | User not found |
| 45003 | Not a copy trader |
| 50000 | System error |