/v1/klines
OHLCV candles
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/kucoin-api/v1/klines" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kucoin-api/v1/klines", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kucoin-api/v1/klines");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/kucoin-api/v1/klines",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"type": "1day",
"count": 100,
"source": "KuCoin",
"symbol": "BTC-USDT",
"candles": [
{
"low": 60727.3,
"high": 62445,
"open": 61727.2,
"time": "2026-06-10T00:00:00.000Z",
"close": 62042,
"volume": 982.9547284091886,
"turnover": 60461987.07124869
},
{
"low": 60775.1,
"high": 63525.7,
"open": 63087.2,
"time": "2026-06-09T00:00:00.000Z",
"close": 61727.2,
"volume": 1701.530300717231,
"turnover": 105719849.83357094
},
{
"low": 62414,
"high": 64207.8,
"open": 63335.8,
"time": "2026-06-08T00:00:00.000Z",
"close": 63080.4,
"volume": 1520.41318507,
"turnover": 96410322.71453233
},
{
"low": 60750,
"high": 64271.9,
"open": 60884.1,
"time": "2026-06-07T00:00:00.000Z",
"close": 63329.8,
"volume": 1639.6286610299042,
"turnover": 101958354.51606365
},
{
"low": 59499.7,
"high": 61525.8,
"open": 61067,
"time": "2026-06-06T00:00:00.000Z",
"close": 60899.3,
"volume": 1745.6992018224882,
"turnover": 106024925.50768264
},
{
"low": 59136.7,
"high": 63975.4,
"open": 63886.9,
"time": "2026-06-05T00:00:00.000Z",
"close": 61056.5,
"volume": 5692.31929957917,
"turnover": 350037184.59821516
},
{
"low": 61378.6,
"high": 64766.5,
"open": 64150,
"time": "2026-06-04T00:00:00.000Z",
"close": 63887,
"volume": 4401.957856553536,
"turnover": 278892555.29284996
},
{
"low": 64092.2,
"high": 67514.4,
"open": 66761,
"time": "2026-06-03T00:00:00.000Z",
"close": 64150,
"volume": 3444.4451050142734,
"turnover": 228226142.08561647
},
{
"low": 66202.8,
"high": 71411.2,
"open": 71404.5,
"time": "2026-06-02T00:00:00.000Z",
"close": 66760.9,
"volume": 3366.606662993767,
"turnover": 230507047.9995986
},
{
"low": 70684.6,
"high": 74087.6,
"open": 73678,
"time": "20
…