/v1/candles
Daily/weekly/monthly OHLC candles
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/upbit-api/v1/candles" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/upbit-api/v1/candles", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/upbit-api/v1/candles");
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/upbit-api/v1/candles",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"unit": "days",
"count": 30,
"market": "KRW-BTC",
"source": "Upbit",
"candles": [
{
"low": 91500000,
"high": 94470000,
"open": 92555000,
"close": 92476000,
"value": 110456180603.31,
"volume": 1193.080022,
"time_kst": "2026-06-10T09:00:00",
"time_utc": "2026-06-10T00:00:00"
},
{
"low": 91700000,
"high": 94980000,
"open": 94735000,
"close": 92555000,
"value": 124485287109.73,
"volume": 1333.84496,
"time_kst": "2026-06-09T09:00:00",
"time_utc": "2026-06-09T00:00:00"
},
{
"low": 94000000,
"high": 96400000,
"open": 95502000,
"close": 94730000,
"value": 129712074079.51,
"volume": 1362.867831,
"time_kst": "2026-06-08T09:00:00",
"time_utc": "2026-06-08T00:00:00"
},
{
"low": 92353000,
"high": 97000000,
"open": 92560000,
"close": 95430000,
"value": 178738402295.37,
"volume": 1892.840645,
"time_kst": "2026-06-07T09:00:00",
"time_utc": "2026-06-07T00:00:00"
},
{
"low": 90895000,
"high": 93600000,
"open": 93000000,
"close": 92560000,
"value": 113673093004.73,
"volume": 1231.038022,
"time_kst": "2026-06-06T09:00:00",
"time_utc": "2026-06-06T00:00:00"
},
{
"low": 90500000,
"high": 95506000,
"open": 95506000,
"close": 93000000,
"value": 301826104804.82,
"volume": 3244.145129,
"time_kst": "2026-06-05T09:00:00",
"time_utc": "2026-06-05T00:00:00"
},
{
"low": 91523000,
"high": 96604000,
"open": 95032000,
"close": 95506000,
"value": 345124356209.69,
"volume": 3659.013955,
"time_kst": "2026-06-04T09:00:00",
"time_utc": "2026-06-04T00:00:00"
},
{
"low": 95015000,
"high": 100073000,
"open": 98760000,
"close": 95032000,
"value": 284321644792.79,
"volume": 2900.121754,
"time_kst": "2026-06-03T09:00:00",
"time_utc": "2026-06-03T00:00:00"
},
{
"low": 98110000,
"high": 104140000,
…