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
Available token
Get the available tokens that WOO X supports.
GET
/
v3
/
public
/
token
Copy
curl --request GET \
--url https://api.woox.io/v3/public/token
Copy
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"token": "<string>",
"fullname": "<string>",
"decimals": 123,
"network": "<string>",
"balanceToken": "<string>"
}
]
}
}
Limit: 10 requests per 1 second per IP address
Response
200 - application/json
The response is of type object
.
Copy
curl --request GET \
--url https://api.woox.io/v3/public/token
Copy
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"token": "<string>",
"fullname": "<string>",
"decimals": 123,
"network": "<string>",
"balanceToken": "<string>"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.