Skip to content
GET /v1/estr

€STR euro short-term rate

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/ecb-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/ecb-api/v1/estr" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ecb-api/v1/estr", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ecb-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/ecb-api/v1/estr",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "date": "2026-06-08",
        "name": "€STR (Euro Short-Term Rate)",
        "source": "European Central Bank",
        "history": [
            {
                "date": "2026-05-26",
                "rate_pct": 1.932
            },
            {
                "date": "2026-05-27",
                "rate_pct": 1.932
            },
            {
                "date": "2026-05-28",
                "rate_pct": 1.933
            },
            {
                "date": "2026-05-29",
                "rate_pct": 1.93
            },
            {
                "date": "2026-06-01",
                "rate_pct": 1.931
            },
            {
                "date": "2026-06-02",
                "rate_pct": 1.932
            },
            {
                "date": "2026-06-03",
                "rate_pct": 1.931
            },
            {
                "date": "2026-06-04",
                "rate_pct": 1.933
            },
            {
                "date": "2026-06-05",
                "rate_pct": 1.931
            },
            {
                "date": "2026-06-08",
                "rate_pct": 1.93
            }
        ],
        "rate_pct": 1.93
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:36.731Z",
        "request_id": "32460fa9-e12c-47dc-b21e-ec38c1333376"
    },
    "status": "ok",
    "message": "€STR retrieved successfully",
    "success": true
}