Getting Started
Public Data
Trading
- POSTPlace order
- DELCancel order
- DELCancel multiple orders
- GETGet order
- GETGet orders
- PUTEdit order
- POSTPlace algo order
- DELCancel algo order
- DELCancel multiple algo orders
- DELCancel all orders by symbol
- GETGet algo order
- GETGet algo orders
- PUTEdit algo order
- GETGet transaction by trade id (last 3 months)
- GETGet transaction history (in the past 2 years)
- GETGet trading fee
- POSTCancel all after
Account
Assets
Futures
Spot Margin
Websocket Streams
- Introduction
- Public Market Data
- Private User Data
- Commands
Trading
Get orders
get orders
GET
/
v3
/
trade
/
orders
Copy
curl --request GET \
--url https://api.woox.io/v3/trade/orders \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>' \
--data 'symbol=<string>' \
--data 'side=<string>' \
--data 'positionSide=<string>' \
--data 'type=<string>' \
--data 'orderTag=<string>' \
--data withRealizedPnl=true \
--data 'status=<string>' \
--data startTime=123 \
--data endTime=123 \
--data page=123 \
--data size=123
Copy
{
"success": true,
"data": {
"meta": {
"total": 31,
"recordsPerPage": 25,
"currentPage": 1
},
"rows": [
{
"symbol": "PERP_BTC_USDT",
"status": "FILLED",
"side": "SELL",
"positionSide": "BOTH",
"createdTime": 1578565539808,
"orderId": 135,
"orderTag": "default",
"price": "123",
"type": "LIMIT",
"quantity": "0.1",
"amount": "null",
"visible": "0.1",
"executed": "0.1",
"totalFee": "0.00123",
"feeAsset": "USDT",
"totalRebate": 0,
"rebateCurrency": "USDT",
"clientOrderId": 0,
"reduceOnly": false,
"realizedPnl": "2",
"averageExecutedPrice": "123",
},
...
]
},
"timestamp": 1721351502594
}
Limit: 10 requests per 1 second
Get orders by customizable conditions. For filtering by status, one can reference special bundled statuses below for ease of access of open (i.e. INCOMPLETE) orders or COMPLETED orders.
-
INCOMPLETE = NEW + PARTIAL_FILLED
-
COMPLETED = CANCELLED + FILLED + REJECTED
Copy
{
"success": true,
"data": {
"meta": {
"total": 31,
"recordsPerPage": 25,
"currentPage": 1
},
"rows": [
{
"symbol": "PERP_BTC_USDT",
"status": "FILLED",
"side": "SELL",
"positionSide": "BOTH",
"createdTime": 1578565539808,
"orderId": 135,
"orderTag": "default",
"price": "123",
"type": "LIMIT",
"quantity": "0.1",
"amount": "null",
"visible": "0.1",
"executed": "0.1",
"totalFee": "0.00123",
"feeAsset": "USDT",
"totalRebate": 0,
"rebateCurrency": "USDT",
"clientOrderId": 0,
"reduceOnly": false,
"realizedPnl": "2",
"averageExecutedPrice": "123",
},
...
]
},
"timestamp": 1721351502594
}
Headers
api-key
Example:
"abcdef123456"
api-signature
Example:
"signaturestring"
api-timestamp
Example:
"1718943200000"
Body
application/x-www-form-urlencoded
The body is of type object
.
Response
200 - application/json
The response is of type object
.
Copy
curl --request GET \
--url https://api.woox.io/v3/trade/orders \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>' \
--data 'symbol=<string>' \
--data 'side=<string>' \
--data 'positionSide=<string>' \
--data 'type=<string>' \
--data 'orderTag=<string>' \
--data withRealizedPnl=true \
--data 'status=<string>' \
--data startTime=123 \
--data endTime=123 \
--data page=123 \
--data size=123
Copy
{
"success": true,
"data": {
"meta": {
"total": 31,
"recordsPerPage": 25,
"currentPage": 1
},
"rows": [
{
"symbol": "PERP_BTC_USDT",
"status": "FILLED",
"side": "SELL",
"positionSide": "BOTH",
"createdTime": 1578565539808,
"orderId": 135,
"orderTag": "default",
"price": "123",
"type": "LIMIT",
"quantity": "0.1",
"amount": "null",
"visible": "0.1",
"executed": "0.1",
"totalFee": "0.00123",
"feeAsset": "USDT",
"totalRebate": 0,
"rebateCurrency": "USDT",
"clientOrderId": 0,
"reduceOnly": false,
"realizedPnl": "2",
"averageExecutedPrice": "123",
},
...
]
},
"timestamp": 1721351502594
}
Assistant
Responses are generated using AI and may contain mistakes.