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
Public Data
Get futures info
Get basic futures information for all the markets.
GET
/
v3
/
public
/
futures
Copy
curl --request GET \
--url https://api.woox.io/v3/public/futures
Copy
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"symbol": "<string>",
"indexPrice": "<string>",
"markPrice": "<string>",
"estFundingRate": "<string>",
"lastFundingRate": "<string>",
"openInterest": "<string>",
"24hOpen": "<string>",
"24hClose": "<string>",
"24hHigh": "<string>",
"24hLow": "<string>",
"24hVolume": "<string>",
"24hAmount": "<string>",
"nextFundingTime": 123
}
]
}
}
Limit: 10 requests per 1 second per IP address
Query Parameters
Symbol name
Response
200 - application/json
The response is of type object
.
Copy
curl --request GET \
--url https://api.woox.io/v3/public/futures
Copy
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"symbol": "<string>",
"indexPrice": "<string>",
"markPrice": "<string>",
"estFundingRate": "<string>",
"lastFundingRate": "<string>",
"openInterest": "<string>",
"24hOpen": "<string>",
"24hClose": "<string>",
"24hHigh": "<string>",
"24hLow": "<string>",
"24hVolume": "<string>",
"24hAmount": "<string>",
"nextFundingTime": 123
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.