GET
/
v3
/
public
/
kline
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
      }
    ]
  }
}

Limit: 10 requests per 1 second

Query Parameters

symbol
string
required

Symbol name

type
string
required

1m/3m/5m/15m/30m/1h/2h/4h/6h/12h/1d/1w/1mon/1y

limit
integer
default:100

Numbers of klines. Maximum of 1000 klines allowed.

Response

200 - application/json

The response is of type object.