/v1/history
Daily FSI time series
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/ofr-api/v1/history" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ofr-api/v1/history", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ofr-api/v1/history");
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/history",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 30,
"label": "OFR Financial Stress Index",
"source": "U.S. Office of Financial Research",
"history": [
{
"date": "2026-04-27",
"value": -2.077
},
{
"date": "2026-04-28",
"value": -1.974
},
{
"date": "2026-04-29",
"value": -1.972
},
{
"date": "2026-04-30",
"value": -2.108
},
{
"date": "2026-05-01",
"value": -1.818
},
{
"date": "2026-05-04",
"value": -1.735
},
{
"date": "2026-05-05",
"value": -1.825
},
{
"date": "2026-05-06",
"value": -2.031
},
{
"date": "2026-05-07",
"value": -2.179
},
{
"date": "2026-05-08",
"value": -2.271
},
{
"date": "2026-05-11",
"value": -2.346
},
{
"date": "2026-05-12",
"value": -2.294
},
{
"date": "2026-05-13",
"value": -2.355
},
{
"date": "2026-05-14",
"value": -2.479
},
{
"date": "2026-05-15",
"value": -2.689
},
{
"date": "2026-05-18",
"value": -2.604
},
{
"date": "2026-05-19",
"value": -2.168
},
{
"date": "2026-05-20",
"value": -2.258
},
{
"date": "2026-05-21",
"value": -2.884
},
{
"date": "2026-05-22",
"value": -2.937
},
{
"date": "2026-05-25",
"value": -2.481
},
{
"date": "2026-05-26",
"value": -2.546
},
{
"date": "2026-05-27",
"value": -2.575
},
{
"date": "2026-05-28",
"value": -2.734
},
{
"date": "2026-05-29",
"value": -2.976
},
{
"date": "2026-06-01",
"value": -2.723
},
{
"date": "2026-06-02",
"value": -2.63
},
{
"date": "2026-06-03",
"value": -2.704
},
{
"date": "2026-06-04",
"
…