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/oscillators-api

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "candles = open:high:low:close, comma-separated, oldest first. Stochastic period defaults to 14 (smooth 3); CCI defaults to 20; Williams %R defaults to 14.",
        "source": "Computed in-process from caller-supplied OHLC candles (no upstream)",
        "service": "oscillators-api",
        "endpoints": {
            "GET /v1/cci": "Commodity Channel Index (candles=o:h:l:c,...&period=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/williams": "Williams %R (candles=o:h:l:c,...&period=14).",
            "GET /v1/stochastic": "Stochastic Oscillator %K and %D (candles=o:h:l:c,...&period=14&smooth=3)."
        },
        "description": "Live OHLC momentum-oscillator analytics computed on demand from OHLC candles. The stochastic endpoint returns the Stochastic Oscillator %K and %D; the williams endpoint returns Williams %R; the cci endpoint returns the Commodity Channel Index — each with an overbought/oversold reading. These oscillators need the full high/low/close, distinct from closes-only indicator tools (RSI, MACD) and from volatility/ATR tools. Computed locally, nothing stored — works for forex, stocks, crypto or commodities.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:09.823Z",
        "request_id": "8eaec8b0-b590-4b8e-aa3f-b4359962902d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}