Zum Inhalt springen
GET /v1/meta

Spec

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

Beispiel-Response

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

{
    "data": {
        "note": "symbol uses Yahoo conventions: US tickers (AAPL), indices (^GSPC, ^IXIC), crypto (BTC-USD), FX (EURUSD=X). interval: 1m,2m,5m,15m,30m,60m,90m,1h,1d,1wk,1mo. range: 1d,5d,1mo,3mo,6mo,1y,2y,5y,10y,ytd,max. Per-minute intervals are limited by Yahoo to short ranges; extended hours apply only intraday.",
        "source": "Yahoo Finance chart v8 (query1.finance.yahoo.com, live)",
        "service": "intraday-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/latest": "Intraday snapshot — price, day change, day high/low, 52w range, last bar (symbol=AAPL).",
            "GET /v1/candles": "Regular-session OHLCV bars (symbol=AAPL, interval=5m, range=1d).",
            "GET /v1/extended": "Pre-market & after-hours bars with session label (symbol=AAPL, interval=5m)."
        },
        "aapl_price": 295.63,
        "description": "Live intraday & historical OHLCV candles for stocks, indices, ETFs, crypto and FX from Yahoo Finance. candles returns regular-session bars at a chosen interval (1m…1h, 1d, 1wk, 1mo) over a range; extended returns pre-market and after-hours bars with a session label; latest returns an intraday snapshot (current price, day change, day high/low, volume, 52-week range, last bar). Live, no key, nothing stored. The intraday candlestick/OHLCV view, distinct from the daily price-history, live-quote and FX/rate APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:39.285Z",
        "request_id": "ad6271f8-2f99-484d-8c98-8c6879f0e9bc"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}