Get the €STR as JSON-API

We build a simple API to get the current and historical €STR rates as JSON.

What is the €STR?

The €STR (Euro Short-Term Rate) stands as a crucial interest rate in Europe, delivered by the European Central Bank (ECB). It symbolizes the expense of acquiring funds for ultra-brief periods, often overnight. The €STR carries significant importance, functioning as a yardstick for loan interest rates, shaping the accessibility of funds for banks and businesses. The Euro Short-Term Rate has been assigned the international securities identification number (ISIN) EU000A2X2A25. Its variations influence economic judgments and policies in the Eurozone, where reduced €STR rates point to more economical borrowing, and elevated rates indicate heightened borrowing expenditures.

Latest rate

3.665 %reference date:July 25, 2024

About the API, data, data-source and license

Our API provides convenient access to current and historical €STR (Euro Short-Term Rate) data, sourced directly from the European Central Bank (ECB). The ECB does not charge for the €STR or license its use. The data is available free of charge on the ECB's website and can be accessed there, but our service offers a simplified, hurdle-free way to access this information as a JSON REST API, and it is completely free of charge. It's important to note that while we make every effort to ensure accuracy, we cannot guarantee the correctness of the received data. Users are advised to verify the data's accuracy and suitability for their specific purposes before relying on it for financial or business decisions. With our API, you can effortlessly integrate €STR data into your applications or systems, making it easier than ever to stay updated on the €STR. We also appreciate backlinks to our service, helping us continue to provide this resource to the community.

Can we push the €STR rates into your infrastructure?

Yes, we can push the €STR rates into our infrastructure. To request details and a quote, please email us at [email protected]. We welcome the opportunity to discuss the details and move forward with your needs.

Request the current €STR rate

To get the current rate, simply send a GET request to receive the current rate as JSON.

Request
curl --location https://api.estr.dev/latest
Response
{
  "date": "2023-01-02",
  "value": 1.906
}

Request all the historical €STR rates

To get all the historical rates, simply send a GET request to receive all rates as JSON.

Request
curl --location https://api.estr.dev/historical
Response
[
  {
    "date": "2023-01-02",
    "value": 1.906
  },
  {
    "date": "2022-12-30",
    "value": 1.89
  },
  {
    "date": "2022-12-29",
    "value": 1.905
  },
  // ...
]