/v1/fsi
Latest headline stress index
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}