/v1/meta
Service metadata
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/stockfeargreed-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stockfeargreed-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stockfeargreed-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/stockfeargreed-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Score bands: 0–24 extreme fear, 25–44 fear, 45–55 neutral, 56–75 greed, 76–100 extreme greed. The index updates through the US trading day.",
"source": "CNN Fear & Greed public feed (production.dataviz.cnn.io, live)",
"service": "stockfeargreed-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/index": "Headline score, rating and prior readings (close, 1w, 1m, 1y).",
"GET /v1/history": "Daily score timeline (limit=30, max 365).",
"GET /v1/components": "The seven underlying indicators with their scores and ratings."
},
"description": "Live CNN Fear & Greed Index for the US stock market. A single 0–100 sentiment score (0 = extreme fear, 100 = extreme greed) built from seven market indicators. index = headline score and rating plus previous close and the readings one week, one month and one year ago; components = the seven underlying indicators (market momentum, stock-price strength, stock-price breadth, put/call options, market volatility VIX, junk-bond demand, safe-haven demand), each with its own score and rating; history = the daily score timeline for the last year. Live, no key, nothing stored. The equity-market sentiment gauge, distinct from the crypto Fear & Greed index.",
"current_score": 29.7,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:36.581Z",
"request_id": "8cf4a448-144a-474e-a469-3c1476b94417"
},
"status": "ok",
"message": "Meta",
"success": true
}