GET
/
v3
/
trade
/
algoOrder
cURL
curl --request GET \
  --url https://api.woox.io/v3/trade/algoOrder \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-signature: <x-api-signature>' \
  --header 'x-api-timestamp: <x-api-timestamp>'
{
    "success": true,
    "data": {
        "algoOrderId": 792420,
        "clientAlgoOrderId": 0,
        "rootAlgoOrderId": 792420,
        "parentAlgoOrderId": 0,
        "symbol": "SPOT_WOO_USDT",
        "orderTag": "default",
        "algoType": "TRAILING_STOP",
        "side": "SELL",
        "positionSide": "BOTH",
        "quantity": 1,
        "isTriggered": false,
        "triggerStatus": "USELESS",
        "type": "MARKET",
        "rootAlgoStatus": "NEW",
        "algoStatus": "NEW",
        "triggerPriceType": "MARKET_PRICE",
        "triggerTime": "0",
        "totalExecutedQuantity": "0",
        "averageExecutedPrice": "0",
        "totalFee": "0",
        "feeAsset": "",
        "totalRebate": "0",
        "rebateCurrency": "USDT",
        "reduceOnly": false,
        "createdTime": 1696595230885,
        "updatedTime": 1696595230885,
        "isActivated": false,
        "callbackRate": "0.03",
        "activatedPrice": "0.21"
    },
    "timestamp": 1676283560233
}
Limit: 10 requests per 1 second
Get algo order details by algoOrderId or clientAlgoOrderId.
{
    "success": true,
    "data": {
        "algoOrderId": 792420,
        "clientAlgoOrderId": 0,
        "rootAlgoOrderId": 792420,
        "parentAlgoOrderId": 0,
        "symbol": "SPOT_WOO_USDT",
        "orderTag": "default",
        "algoType": "TRAILING_STOP",
        "side": "SELL",
        "positionSide": "BOTH",
        "quantity": 1,
        "isTriggered": false,
        "triggerStatus": "USELESS",
        "type": "MARKET",
        "rootAlgoStatus": "NEW",
        "algoStatus": "NEW",
        "triggerPriceType": "MARKET_PRICE",
        "triggerTime": "0",
        "totalExecutedQuantity": "0",
        "averageExecutedPrice": "0",
        "totalFee": "0",
        "feeAsset": "",
        "totalRebate": "0",
        "rebateCurrency": "USDT",
        "reduceOnly": false,
        "createdTime": 1696595230885,
        "updatedTime": 1696595230885,
        "isActivated": false,
        "callbackRate": "0.03",
        "activatedPrice": "0.21"
    },
    "timestamp": 1676283560233
}

Headers

x-api-key
string
required
Example:

"abcdef123456"

x-api-signature
string
required
Example:

"signaturestring"

x-api-timestamp
string
required
Example:

"1718943200000"

Query Parameters

algoOrderId
integer
default:1

Id of the algo order; Either algoOrderId or clientAlgoOrderId is required. If both are passed, algoOrderId will be used.

clientAlgoOrderId
integer
default:1

Client order Id as assigned by the user; Either algoOrderId or clientAlgoOrderId is required. If both are passed, algoOrderId will be used.

Response

200 - application/json
success
boolean

true

timestamp
integer

timestamp

data
object