/v1/spreads
The live rate board and every funding spread in bps, with a stress read
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/fundingspread-api/v1/spreads" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fundingspread-api/v1/spreads", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fundingspread-api/v1/spreads");
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/fundingspread-api/v1/spreads",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "All rates from the NY Fed. Spreads in basis points. SOFR − EFFR is the headline repo-stress gauge: positive and rising = secured (collateral) funding richer than unsecured, the September-2019-style stress; negative = easy funding. Read fresh per call, lightly cached.",
"as_of": "2026-06-10",
"rates": {
"bgcr": {
"date": "2026-06-10",
"rate": 3.57,
"volume_bn": 1281
},
"effr": {
"date": "2026-06-10",
"rate": 3.62,
"volume_bn": 106
},
"obfr": {
"date": "2026-06-10",
"rate": 3.62,
"volume_bn": 239
},
"sofr": {
"date": "2026-06-10",
"rate": 3.59,
"volume_bn": 3023
},
"tgcr": {
"date": "2026-06-10",
"rate": 3.57,
"volume_bn": 1254
}
},
"source": "Federal Reserve Bank of New York (SOFR, EFFR, OBFR, BGCR, TGCR)",
"spreads_bps": {
"bgcr_tgcr": 0,
"sofr_bgcr": 2,
"sofr_effr": -3,
"sofr_obfr": -3
},
"funding_stress": "normal / easy funding — no stress"
},
"meta": {
"timestamp": "2026-06-12T10:34:34.406Z",
"request_id": "15df1ae7-9834-4272-bd2f-c22f79d98bd4"
},
"status": "ok",
"message": "Funding spreads retrieved successfully",
"success": true
}