Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/fibonacci-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "retracement and extension take symbol (a Yahoo ticker like AAPL, EURUSD=X, BTC-USD, ^GSPC), interval (1d/1wk/1mo, default 1d) and lookback (10-400 candles, default 60). meta takes no parameters. Levels are in the instrument's own price; the swing is the highest high and lowest low over the lookback window. A short ~5-minute cache fronts Yahoo.",
        "sample": {
            "low": 245.51,
            "high": 317.4,
            "symbol": "AAPL",
            "direction": "up"
        },
        "source": "Yahoo Finance chart candles (query1.finance.yahoo.com), keyless, live",
        "service": "fibonacci-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/extension": "Fibonacci extension/projection targets (symbol=AAPL).",
            "GET /v1/retracement": "Fibonacci retracement levels + price position (symbol=AAPL, lookback=60)."
        },
        "description": "Automatic Fibonacci retracement and extension levels for any stock, index, FX pair, commodity or crypto, computed live from Yahoo Finance, no key. The retracement endpoint detects the dominant swing high and low over a lookback window, sets the trend direction, and returns the 0/23.6/38.2/50/61.8/78.6/100% levels with where price sits; the extension endpoint returns the 127.2/141.4/161.8/200/261.8% projection targets in the trend direction. The Fibonacci-levels cut — distinct from the oscillator/channel indicators (RSI, MACD, Bollinger, SuperTrend, Keltner), FX pivot points and the Ichimoku system. The swing is detected mechanically, not hand-picked.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:11.114Z",
        "request_id": "78695038-a904-44e3-817f-083df039640e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}