curl --request GET \
--url https://api.woox.io/v3/public/kline
{
"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
}
]
}
}
Get the latest klines of the trading instrument.
curl --request GET \
--url https://api.woox.io/v3/public/kline
{
"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
}
]
}
}
Symbol name
1m/3m/5m/15m/30m/1h/2h/4h/6h/12h/1d/1w/1mon/1y
Numbers of klines. Maximum of 1000 klines allowed.
The response is of type object
.