/v1/real-rate
Fisher real rate
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/inflation-api/v1/real-rate" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/inflation-api/v1/real-rate", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/inflation-api/v1/real-rate");
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/inflation-api/v1/real-rate",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Fisher equation: 1 + real = (1 + nominal)/(1 + inflation). The approximate form (nominal − inflation) is only accurate at low rates.",
"inputs": {
"nominal_rate": 7,
"inflation_rate": 3
},
"real_rate": 0.03883495,
"real_rate_pct": 3.883495,
"approximate_real_rate_pct": 4
},
"meta": {
"timestamp": "2026-06-05T11:30:32.575Z",
"request_id": "2cafd0ce-4f2e-43e2-9149-2757b764bda7"
},
"status": "ok",
"message": "Fisher real rate",
"success": true
}