Zum Inhalt springen
GET /v1/indicators

Raw indicators + recent closes

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "base": "GBP",
        "pair": "GBPJPY",
        "as_of": "2026-06-08",
        "quote": "JPY",
        "indicators": {
            "price": 213.7564,
            "score": 0,
            "trend": "uptrend",
            "rsi_14": 53.59,
            "sma_20": 213.8631,
            "sma_50": 213.7587,
            "verdict": "neutral",
            "ma_cross": "golden",
            "rsi_state": "neutral",
            "momentum_10d_pct": -0.36
        },
        "recent_closes": [
            213.1032,
            213.1514,
            213.3852,
            211.7863,
            212.5144,
            213.3239,
            213.1362,
            213.5643,
            213.5319,
            214.5267,
            214.437,
            214.1818,
            213.7426,
            213.8418,
            214.7457,
            215.22,
            214.9589,
            215.0653,
            215.2881,
            213.7564
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:29.744Z",
        "request_id": "c16f8bcf-187f-4003-ba1b-69e31a450271"
    },
    "status": "ok",
    "message": "Indicators retrieved successfully",
    "success": true
}