/v1/key_rates
ECB policy interest rates
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/ecb-api/v1/key_rates" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ecb-api/v1/key_rates", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ecb-api/v1/key_rates");
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/ecb-api/v1/key_rates",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"rates": {
"deposit_facility": {
"history": [
{
"date": "2025-03-12",
"rate_pct": 2.5
},
{
"date": "2025-04-23",
"rate_pct": 2.25
},
{
"date": "2025-06-11",
"rate_pct": 2
}
],
"rate_pct": 2,
"effective_date": "2025-06-11"
},
"marginal_lending_facility": {
"history": [
{
"date": "2025-03-12",
"rate_pct": 2.9
},
{
"date": "2025-04-23",
"rate_pct": 2.65
},
{
"date": "2025-06-11",
"rate_pct": 2.4
}
],
"rate_pct": 2.4,
"effective_date": "2025-06-11"
},
"main_refinancing_operations": {
"history": [
{
"date": "2025-03-12",
"rate_pct": 2.65
},
{
"date": "2025-04-23",
"rate_pct": 2.4
},
{
"date": "2025-06-11",
"rate_pct": 2.15
}
],
"rate_pct": 2.15,
"effective_date": "2025-06-11"
}
},
"source": "European Central Bank key interest rates"
},
"meta": {
"timestamp": "2026-06-09T11:39:38.941Z",
"request_id": "76d5b200-7fff-4231-b5d4-f036efe9e3dd"
},
"status": "ok",
"message": "Key rates retrieved successfully",
"success": true
}