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
Kline
Get the latest klines of the trading instrument.
GET
/
v3
/
public
/
kline
Copy
curl --request GET \
--url https://api.woox.io/v3/public/kline
Copy
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"open": "<string>",
"close": "<string>",
"low": "<string>",
"high": "<string>",
"volume": "<string>",
"amount": "<string>",
"symbol": "<string>",
"type": "<string>",
"startTimestamp": 123,
"endTimestamp": 123
}
]
}
}
Limit: 10 requests per 1 second
Query Parameters
Symbol name
1m/3m/5m/15m/30m/1h/2h/4h/6h/12h/1d/1w/1mon/1y
Numbers of klines. Maximum of 1000 klines allowed.
Response
200 - application/json
The response is of type object
.
Copy
curl --request GET \
--url https://api.woox.io/v3/public/kline
Copy
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"open": "<string>",
"close": "<string>",
"low": "<string>",
"high": "<string>",
"volume": "<string>",
"amount": "<string>",
"symbol": "<string>",
"type": "<string>",
"startTimestamp": 123,
"endTimestamp": 123
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.