/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}