/v1/breakeven
Market-implied inflation = nominal - real
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/realyields-api/v1/breakeven" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/realyields-api/v1/breakeven", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/realyields-api/v1/breakeven");
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/realyields-api/v1/breakeven",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"date": "2026-06-11",
"source": "US Treasury",
"breakeven": [
{
"maturity": "5y",
"real_yield_pct": 1.78,
"nominal_yield_pct": 4.18,
"breakeven_inflation_pct": 2.4
},
{
"maturity": "7y",
"real_yield_pct": 1.96,
"nominal_yield_pct": 4.31,
"breakeven_inflation_pct": 2.35
},
{
"maturity": "10y",
"real_yield_pct": 2.16,
"nominal_yield_pct": 4.45,
"breakeven_inflation_pct": 2.29
},
{
"maturity": "20y",
"real_yield_pct": 2.53,
"nominal_yield_pct": 4.96,
"breakeven_inflation_pct": 2.43
},
{
"maturity": "30y",
"real_yield_pct": 2.72,
"nominal_yield_pct": 4.95,
"breakeven_inflation_pct": 2.23
}
],
"nominal_date": "2026-06-11"
},
"meta": {
"timestamp": "2026-06-12T01:41:31.271Z",
"request_id": "754b17f6-0cdd-442e-bd9f-dc78170a76b8"
},
"status": "ok",
"message": "Breakeven inflation retrieved successfully",
"success": true
}