Zum Inhalt springen
GET /v1/sofr

SOFR detail + distribution

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/usrates-api/v1/sofr" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/usrates-api/v1/sofr", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/usrates-api/v1/sofr");
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/usrates-api/v1/sofr",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

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

{
    "data": {
        "date": "2026-06-05",
        "name": "Secured Overnight Financing Rate",
        "note": "SOFR is the headline US dollar benchmark replacing USD LIBOR.",
        "type": "SOFR",
        "trend": [
            {
                "date": "2026-06-05",
                "rate_pct": 3.63,
                "volume_billions": 3131
            },
            {
                "date": "2026-06-04",
                "rate_pct": 3.62,
                "volume_billions": 3147
            },
            {
                "date": "2026-06-03",
                "rate_pct": 3.61,
                "volume_billions": 3098
            },
            {
                "date": "2026-06-02",
                "rate_pct": 3.63,
                "volume_billions": 3148
            },
            {
                "date": "2026-06-01",
                "rate_pct": 3.65,
                "volume_billions": 3224
            },
            {
                "date": "2026-05-29",
                "rate_pct": 3.63,
                "volume_billions": 3201
            },
            {
                "date": "2026-05-28",
                "rate_pct": 3.62,
                "volume_billions": 3139
            },
            {
                "date": "2026-05-27",
                "rate_pct": 3.63,
                "volume_billions": 3176
            },
            {
                "date": "2026-05-26",
                "rate_pct": 3.63,
                "volume_billions": 3127
            },
            {
                "date": "2026-05-22",
                "rate_pct": 3.55,
                "volume_billions": 3078
            }
        ],
        "rate_pct": 3.63,
        "percentiles": {
            "p1": 3.58,
            "p25": 3.61,
            "p75": 3.68,
            "p99": 3.71
        },
        "volume_billions": 3131
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:26.787Z",
        "request_id": "b74768a5-2092-4bc3-a5fa-11cb80431b0d"
    },
    "status": "ok",
    "message": "SOFR retrieved successfully",
    "success": true
}