Zum Inhalt springen
GET /v1/extended

Pre-market & after-hours bars

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/intraday-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/intraday-api/v1/extended" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/intraday-api/v1/extended", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/intraday-api/v1/extended");
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/extended",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "type": "EQUITY",
        "count": 115,
        "price": 295.63,
        "range": "1d",
        "source": "Yahoo Finance",
        "symbol": "AAPL",
        "currency": "USD",
        "exchange": "NasdaqGS",
        "interval": "5m",
        "timezone": "America/New_York",
        "extended_hours_candles": [
            {
                "low": 291.58,
                "high": 294.23,
                "open": 292.5277,
                "time": "2026-06-11T08:00:00.000Z",
                "close": 293.1488,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 292.45,
                "high": 294.18,
                "open": 293.1407,
                "time": "2026-06-11T08:05:00.000Z",
                "close": 292.74,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 291.73,
                "high": 292.8465,
                "open": 292.7112,
                "time": "2026-06-11T08:10:00.000Z",
                "close": 291.9927,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 291.7392,
                "high": 292.6961,
                "open": 291.97,
                "time": "2026-06-11T08:15:00.000Z",
                "close": 292.336,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 292,
                "high": 292.67,
                "open": 292.24,
                "time": "2026-06-11T08:20:00.000Z",
                "close": 292.6652,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 292.1352,
                "high": 292.8488,
                "open": 292.66,
                "time": "2026-06-11T08:25:00.000Z",
                "close": 292.4,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 292.0012,
                "high": 292.4888,
                "open": 292.2,
                "time": "2026-06-11T08:30:00.000Z",
                "close": 292.0012,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 292,
                "high": 292.41,
                "open": 292.366,
                "time": "2026-06-11T08:35:00.000Z",
                "close": 292.2666,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 291.75,
                "high": 292.2888,
                "open": 291.98,
                "time": "2026-06-11T08:40:00.000Z",
                "close": 292.04,
                "volume": 0,
                "session": "pre"
            },
            {
                "low": 291.7112,
                "high": 292.02,
                "open": 292,
                "time": "2026-06-11T08:45:00.000Z",
                "close": 291.94,
        
…