# Euribor Rates — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access current and historical Euribor 6-month interest rates to track lending benchmarks and analyze rate trends over time. Monitor real-time rate changes and retrieve past data to inform financial decisions and pricing strategies.

**Category:** Finance & Markets | **Website:** [euribor-rates.eu/](https://euribor-rates.eu/) | **Docs:** [parse.bot/marketplace/ab75f0fb-25e3-4515-9328-85e9bef32cb8/euribor-rates-eu-api](https://parse.bot/marketplace/ab75f0fb-25e3-4515-9328-85e9bef32cb8/euribor-rates-eu-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-euribor-rates-eu-api-ab75f0fb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_current_rate

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-euribor-rates-eu-api-ab75f0fb/get_current_rate \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_historical_data

Retrieves historical 6-month Euribor interest rate data. Returns daily data points for the last 10 business days and monthly data points (first-of-month rates) for the specified year range. Results are ordered most-recent first within each type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `end_year` | integer | No | The year to stop the historical search at (inclusive). |
| `start_year` | integer | No | The year to start the historical search from (inclusive). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-euribor-rates-eu-api-ab75f0fb/get_historical_data \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"end_year":"<integer>","start_year":"<integer>"}'
```
