Discover/Euribor Rates API
live

Euribor Rates APIeuribor-rates.eu

Access current and historical 6-month Euribor interest rates via two endpoints. Returns daily and monthly rate data with dates, values, and maturity info.

Endpoint health
verified 5d ago
get_current_rate
get_historical_data
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Euribor Rates API?

The euribor-rates.eu API provides 2 endpoints for retrieving 6-month Euribor interest rate data, returning 4 fields per data point including date, rate value, unit, and maturity. The get_current_rate endpoint returns the latest published rate, while get_historical_data delivers both daily and monthly time-series data with optional year range filtering.

Try it

No input parameters required.

api.parse.bot/scraper/94edea01-4eb5-4ede-bdcc-59edd607f40c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/94edea01-4eb5-4ede-bdcc-59edd607f40c/get_current_rate' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace euribor-rates-eu-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.euribor_rates_api import EuriborRates, Rate, HistoricalRate

client = EuriborRates()

# Get the current 6-month Euribor rate
current = client.rates.current()
print(current.date, current.rate, current.unit, current.maturity)

# Retrieve historical rates for a specific year range
for rate in client.historicalrates.list(start_year=2024, end_year=2026):
    print(rate.date, rate.rate, rate.type)
All endpoints · 2 totalmissing one? ·

Extracts the current 6-month Euribor interest rate. Returns the latest available rate with its publication date. The rate is updated each business day by the European Money Markets Institute.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "date": "string, publication date of the rate in M/D/YYYY format",
    "rate": "number, the current 6-month Euribor rate value",
    "unit": "string, always 'percent'",
    "maturity": "string, always '6 months'"
  },
  "sample": {
    "data": {
      "date": "6/9/2026",
      "rate": 2.606,
      "unit": "percent",
      "maturity": "6 months"
    },
    "status": "success"
  }
}

About the Euribor Rates API

What the API Returns

Both endpoints focus exclusively on the 6-month Euribor tenor. Each response identifies the maturity as '6 months' and the unit as 'percent', so downstream consumers can handle the numeric rate field without ambiguity. Dates are returned in M/D/YYYY string format across all responses.

Current Rate Endpoint

get_current_rate takes no input parameters and returns a single object with four fields: date, rate, unit, and maturity. This is the most recently published 6-month Euribor figure as it appears on euribor-rates.eu, suitable for real-time display or daily snapshot jobs.

Historical Data Endpoint

get_historical_data returns an array of data objects in the data field, each tagged with a type of either 'daily' or 'monthly'. The daily subset always covers the last 10 business days. The monthly subset can be filtered by start_year and end_year integer parameters — both optional and inclusive. The response also includes a count integer reflecting the total number of data points returned across both types, which is useful for pagination checks or data validation.

Source Context

euribor-rates.eu is a public reference site for European interbank offered rates. It does not publish a documented developer API of its own. This Parse API surfaces the structured rate data programmatically for use in financial applications, spreadsheets, and automated monitoring systems.

Reliability & maintenanceVerified

The Euribor Rates API is a managed, monitored endpoint for euribor-rates.eu — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when euribor-rates.eu changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official euribor-rates.eu API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display the live 6-month Euribor rate on a mortgage calculator or loan pricing tool using get_current_rate
  • Plot a multi-year Euribor trend chart by calling get_historical_data with start_year and end_year parameters
  • Run a daily snapshot job that stores the current rate and date to a database for internal audit trails
  • Compare the last 10 business days of daily Euribor data against a fixed internal benchmark rate
  • Build a rate-change alert system that detects when the current rate differs from the previous stored value
  • Generate a year-over-year summary of monthly Euribor data for fixed-income research or reporting
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does euribor-rates.eu have an official developer API?+
No. euribor-rates.eu does not publish a documented public developer API. This Parse API is the programmatic way to access the rate data it publishes.
What does the `type` field in `get_historical_data` distinguish?+
Each object in the data array carries a type of either 'daily' or 'monthly'. Daily points cover the last 10 business days and are not affected by the year range parameters. Monthly points are filtered by start_year and end_year, both inclusive integers.
Does this API cover Euribor tenors other than 6 months, such as 1-month or 12-month rates?+
Not currently. Both endpoints return only the 6-month maturity, reflected in the maturity field. You can fork this API on Parse and revise it to add endpoints targeting other Euribor tenor pages on euribor-rates.eu.
How far back does the historical data go?+
The monthly data range is controlled by the start_year and end_year parameters you pass to get_historical_data. The site carries Euribor data back to the early 2000s, but the API will return data only within the year bounds you specify. If you omit both parameters, the default range the endpoint applies is determined by the source page's available data.
Are intraday or tick-level Euribor rates available?+
Not currently. The API returns one rate per day at the daily granularity and one rate per month at the monthly granularity. euribor-rates.eu itself publishes one official fixing per business day. You can fork this API on Parse and revise it if you need to pull data from a source that offers finer granularity.
Page content last updated . Spec covers 2 endpoints from euribor-rates.eu.
Related APIs in FinanceSee all →
hkab.org.hk API
Access real-time Hong Kong HIBOR interest rates and daily exchange rates to stay updated on key financial benchmarks. Get the latest market highlights and rate information directly from the Hong Kong Association of Banks to inform your financial decisions.
x-rates.com API
x-rates.com API
resbank.co.za API
Access real-time and historical financial data from South Africa's central bank, including prime rates, repo rates, exchange rates, inflation metrics (CPI and PPI), and commodity prices like gold. Track key interest rate benchmarks such as SABOR and ZARONIA rates, and monitor market rates to stay informed on South African economic indicators.
data.ecb.europa.eu API
Access official European Central Bank statistical series and observations to retrieve economic data like exchange rates, interest rates, and monetary aggregates. Browse available dataflows and retrieve specific time series data to analyze ECB's published economic indicators.
euenergy.live API
Monitor real-time and historical electricity prices across Europe with hourly granularity, including load data and city-level pricing information. Look up current rates by country or city, track price trends over time, and access comprehensive bulk historical data to analyze European energy markets.
epexspot.com API
Access real-time and historical European power market data including day-ahead and intraday pricing results, monitor auction statuses across market areas, and stay updated with the latest newsroom articles from EPEX SPOT. Track power prices and market activity across different European regions to make informed trading and investment decisions.
xe.com API
Access live mid-market exchange rates, convert between any currency pair, and retrieve historical rate data and currency metadata from xe.com.
bankier.pl API
Access Polish financial market data including current WIBOR interest rates and detailed information about Polish companies listed on the stock market. Search for specific companies and retrieve their financial details to monitor investment opportunities and borrowing rates.