/v1/policy
ECB key-rate corridor and €STR position
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/estr-api/v1/policy" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/estr-api/v1/policy", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/estr-api/v1/policy");
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/estr-api/v1/policy",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"date": "2025-06-11",
"source": "European Central Bank",
"estr_pct": 1.93,
"central_bank": "European Central Bank",
"corridor_width_bps": 40,
"deposit_facility_pct": 2,
"main_refinancing_pct": 2.15,
"marginal_lending_pct": 2.4,
"estr_spread_to_deposit_bps": -7
},
"meta": {
"timestamp": "2026-06-10T22:57:02.620Z",
"request_id": "47fc17c8-8ab9-4ee7-a254-599fcaeaf170"
},
"status": "ok",
"message": "Policy rates retrieved successfully",
"success": true
}