/v1/policy
ECB key-rate corridor and €STR position
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}