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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "auth": "none upstream; this gateway requires x-api-key",
        "name": "Crypto Fear & Greed Index API",
        "note": "The 0–100 crypto market sentiment index (0 = Extreme Fear, 100 = Extreme Greed), updated daily. /v1/current for the latest value, /v1/history?limit=30 (or limit=all) for the series, /v1/stats?days=30 for average/min/max. Live, no cache.",
        "source": "alternative.me Fear & Greed Index — public, no key",
        "endpoints": 4
    },
    "meta": {
        "timestamp": "2026-06-02T16:52:06.248Z",
        "request_id": "32e7267c-f324-44a0-be71-140123f09ed1"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}