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
Assets
Get balances
Get balances
GET
/
v3
/
asset
/
balances
Copy
curl --request GET \
--url https://api.woox.io/v3/asset/balances \
--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 'token=<string>'
Copy
{
"success": true,
"data": {
"holding": [
{
"token": "WOO",
"holding": "1",
"frozen": "0",
"staked": "0",
"unbonding": "0",
"vault": "0",
"interest": "0",
"earn": "0",
"pendingShortQty": "0",
"pendingLongQty": "0",
"availableBalance": "0",
"averageOpenPrice": "0.23432",
"markPrice": "0.25177",
"pnl24H": "0.0",
"fee24H": "0.0",
"timestamp": 1673323746259
},
...
]
},
"timestamp": 1673323746259
}
Limit: 10 requests per 1 seconds
Get account balances in trading wallet, vault, staking and earn products.
Copy
{
"success": true,
"data": {
"holding": [
{
"token": "WOO",
"holding": "1",
"frozen": "0",
"staked": "0",
"unbonding": "0",
"vault": "0",
"interest": "0",
"earn": "0",
"pendingShortQty": "0",
"pendingLongQty": "0",
"availableBalance": "0",
"averageOpenPrice": "0.23432",
"markPrice": "0.25177",
"pnl24H": "0.0",
"fee24H": "0.0",
"timestamp": 1673323746259
},
...
]
},
"timestamp": 1673323746259
}
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/asset/balances \
--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 'token=<string>'
Copy
{
"success": true,
"data": {
"holding": [
{
"token": "WOO",
"holding": "1",
"frozen": "0",
"staked": "0",
"unbonding": "0",
"vault": "0",
"interest": "0",
"earn": "0",
"pendingShortQty": "0",
"pendingLongQty": "0",
"availableBalance": "0",
"averageOpenPrice": "0.23432",
"markPrice": "0.25177",
"pnl24H": "0.0",
"fee24H": "0.0",
"timestamp": 1673323746259
},
...
]
},
"timestamp": 1673323746259
}
Assistant
Responses are generated using AI and may contain mistakes.