Naar de inhoud
GET /v1/policy

ECB key-rate corridor and €STR position

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/estr-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}