/v1/estr
Latest €STR rate plus full daily statistics
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/estr-api/v1/estr" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/estr-api/v1/estr", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/estr-api/v1/estr");
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/estr",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"date": "2026-06-09",
"name": "Euro Short-Term Rate",
"source": "European Central Bank",
"rate_pct": 1.93,
"benchmark": "€STR",
"rate_25th_pct": 1.91,
"rate_75th_pct": 1.95,
"number_of_banks": 45,
"volume_eur_millions": 66032,
"number_of_transactions": 925,
"largest_5_banks_share_pct": 41
},
"meta": {
"timestamp": "2026-06-10T22:57:01.349Z",
"request_id": "0ae5cc34-bb02-45de-aef1-7f3ac37696e5"
},
"status": "ok",
"message": "Rate retrieved successfully",
"success": true
}