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 instruments
Retrieve a list of Spot and USDT perpetual instruments.
GET
/
v3
/
public
/
instruments
Copy
curl --request GET \
--url https://api.woox.io/v3/public/instruments
Copy
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"symbol": "<string>",
"status": "<string>",
"baseAsset": "<string>",
"baseAssetMultiplier": 123,
"quoteAsset": "<string>",
"quoteMin": 123,
"quoteMax": 123,
"quoteTick": 123,
"baseMin": 123,
"baseMax": 123,
"baseTick": 123,
"minNotional": 123,
"bidCapRatio": 123,
"bidFloorRatio": 123,
"askCapRatio": 123,
"askFloorRatio": 123,
"fundingIntervalHours": 123,
"fundingCap": 123,
"fundingFloor": 123,
"orderMode": "<string>",
"baseIMR": 123,
"baseMMR": 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/instruments
Copy
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"symbol": "<string>",
"status": "<string>",
"baseAsset": "<string>",
"baseAssetMultiplier": 123,
"quoteAsset": "<string>",
"quoteMin": 123,
"quoteMax": 123,
"quoteTick": 123,
"baseMin": 123,
"baseMax": 123,
"baseTick": 123,
"minNotional": 123,
"bidCapRatio": 123,
"bidFloorRatio": 123,
"askCapRatio": 123,
"askFloorRatio": 123,
"fundingIntervalHours": 123,
"fundingCap": 123,
"fundingFloor": 123,
"orderMode": "<string>",
"baseIMR": 123,
"baseMMR": 123
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.