/v1/candles
Regular-session OHLCV bars
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/intraday-api/v1/candles" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/intraday-api/v1/candles", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/intraday-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/intraday-api/v1/candles",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"type": "EQUITY",
"count": 78,
"price": 295.63,
"range": "1d",
"source": "Yahoo Finance",
"symbol": "AAPL",
"candles": [
{
"low": 291.0400085449219,
"high": 293.7850036621094,
"open": 293.7200012207031,
"time": "2026-06-11T13:30:00.000Z",
"close": 291.32000732421875,
"volume": 1642520
},
{
"low": 290.3800048828125,
"high": 292.05999755859375,
"open": 291.3349914550781,
"time": "2026-06-11T13:35:00.000Z",
"close": 292.05999755859375,
"volume": 564024
},
{
"low": 291.4700012207031,
"high": 292.29998779296875,
"open": 292.0295104980469,
"time": "2026-06-11T13:40:00.000Z",
"close": 292.04901123046875,
"volume": 463823
},
{
"low": 291.6400146484375,
"high": 293.1400146484375,
"open": 292.0450134277344,
"time": "2026-06-11T13:45:00.000Z",
"close": 292.739990234375,
"volume": 538144
},
{
"low": 292.6199951171875,
"high": 293.95001220703125,
"open": 292.7300109863281,
"time": "2026-06-11T13:50:00.000Z",
"close": 293.7799987792969,
"volume": 575307
},
{
"low": 291.5,
"high": 293.75,
"open": 293.75,
"time": "2026-06-11T13:55:00.000Z",
"close": 291.5950012207031,
"volume": 546765
},
{
"low": 290.3299865722656,
"high": 291.7799987792969,
"open": 291.5950012207031,
"time": "2026-06-11T14:00:00.000Z",
"close": 290.8800048828125,
"volume": 567961
},
{
"low": 290.25,
"high": 290.8900146484375,
"open": 290.8550109863281,
"time": "2026-06-11T14:05:00.000Z",
"close": 290.6099853515625,
"volume": 471073
},
{
"low": 290.04998779296875,
"high": 290.8031005859375,
"open": 290.6199035644531,
"time": "2026-06-11T14:10:00.000Z",
"close": 290.2200012207031,
"volume": 374763
},
{
"low": 289.8500061035156,
"high": 290.3500061035156,
"open": 290.2200012207031,
"time": "2026-06-11T14:15:00.000Z",
"close": 290.1400146484375,
"volume": 501597
…