/v1/estr
Latest €STR rate plus full daily statistics
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}