Zum Inhalt springen
GET /v1/meta

Service metadata

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

Beispiel-Response

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

{
    "data": {
        "as_of": "2026-06-08",
        "source": "ECB daily reference rates via Frankfurter (live)",
        "service": "fxsignals-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/scan": "Scan a basket vs a base for setups (base=USD, verdict=bullish|bearish|neutral).",
            "GET /v1/signal": "Technical signal + verdict for a pair (base=EUR&quote=USD).",
            "GET /v1/indicators": "Raw indicators + recent closes for a pair (base, quote, limit)."
        },
        "indicators": [
            "SMA20",
            "SMA50",
            "MA crossover",
            "RSI14",
            "momentum(10d)"
        ],
        "description": "Live FX technical signals from ECB reference rates (Frankfurter): 20/50-day moving averages and crossover (golden/death), 14-day RSI (overbought/oversold) and momentum, rolled into a bullish/neutral/bearish verdict for any currency pair. Get a pair signal, raw indicators with recent closes, or scan a basket. Live, no key. Educational, not financial advice. Distinct from rate, strength, volatility and correlation APIs.",
        "scan_basket": [
            "USD",
            "EUR",
            "JPY",
            "GBP",
            "AUD",
            "CAD",
            "CHF",
            "NZD"
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:30.125Z",
        "request_id": "04a66669-a7ff-4c82-92d4-9b2fcd6fdecf"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}