Zum Inhalt springen
GET /v1/history

Daily FSI time series

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/ofr-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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",
                "
…