/v1/fsi
Latest headline stress index
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/ofr-api/v1/fsi" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ofr-api/v1/fsi", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ofr-api/v1/fsi");
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/ofr-api/v1/fsi",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"date": "2026-06-05",
"index": "OFR Financial Stress Index",
"value": -2.472,
"change": 0.21,
"source": "U.S. Office of Financial Research",
"previous_date": "2026-06-04",
"interpretation": "below-average stress (calm)",
"previous_value": -2.682
},
"meta": {
"timestamp": "2026-06-09T20:24:25.251Z",
"request_id": "7f6e1a2d-3514-4d3c-8b04-f7d88b89939f"
},
"status": "ok",
"message": "FSI retrieved successfully",
"success": true
}