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
Futures
Get futures leverage
get account leverage
GET
/
v3
/
futures
/
leverage
Copy
curl --request GET \
--url https://api.woox.io/v3/futures/leverage \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>'
Copy
// hedge mode
{
"success": true,
"data": {
"symbol": "PERP_BTC_USDT",
"marginMode": "CROSS",
"positionMode": "HEDGE_MODE"
"details": [
{
"positionSide": "LONG",
"leverage": 10
},
{
"positionSide": "SHORT",
"leverage": 15
}
]
},
"timestamp": 1711433755393
}
// one way
{
"success": true,
"data": {
"symbol": "PERP_BTC_USDT",
"marginMode": "CROSS",
"positionMode": "ONE_WAY"
"details": [
{
"positionSide": "BOTH",
"leverage": 10
}
]
},
"timestamp": 1711433755393
}
Limit 10 requests per 60 seconds
Copy
// hedge mode
{
"success": true,
"data": {
"symbol": "PERP_BTC_USDT",
"marginMode": "CROSS",
"positionMode": "HEDGE_MODE"
"details": [
{
"positionSide": "LONG",
"leverage": 10
},
{
"positionSide": "SHORT",
"leverage": 15
}
]
},
"timestamp": 1711433755393
}
// one way
{
"success": true,
"data": {
"symbol": "PERP_BTC_USDT",
"marginMode": "CROSS",
"positionMode": "ONE_WAY"
"details": [
{
"positionSide": "BOTH",
"leverage": 10
}
]
},
"timestamp": 1711433755393
}
Headers
Example:
"abcdef123456"
Example:
"signaturestring"
Example:
"1718943200000"
Query Parameters
Symbol name
values: CROSS | ISOLATED
values: ONE_WAY | HEDGE_MODE
Response
200 - application/json
The response is of type object
.
Copy
curl --request GET \
--url https://api.woox.io/v3/futures/leverage \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>'
Copy
// hedge mode
{
"success": true,
"data": {
"symbol": "PERP_BTC_USDT",
"marginMode": "CROSS",
"positionMode": "HEDGE_MODE"
"details": [
{
"positionSide": "LONG",
"leverage": 10
},
{
"positionSide": "SHORT",
"leverage": 15
}
]
},
"timestamp": 1711433755393
}
// one way
{
"success": true,
"data": {
"symbol": "PERP_BTC_USDT",
"marginMode": "CROSS",
"positionMode": "ONE_WAY"
"details": [
{
"positionSide": "BOTH",
"leverage": 10
}
]
},
"timestamp": 1711433755393
}
Assistant
Responses are generated using AI and may contain mistakes.