Convert EUR to CLP
Euro → Chilean Peso
1 EUR = 1,098.3865 CLP(1 CLP = 0.000910426 EUR)
Currency converter
1 EUR =
1,098.3865 CLP
EUR to CLP: last 30 days
Over the last 30 days, 1 EUR traded between 1,076.9754 and 1,103.1049 CLP, averaging 1,089.5883 CLP. The EUR/CLP rate is up 1.82% since 2026-08-28.
- 30-day high
- 1,103.1049
- 2026-09-21
- 30-day low
- 1,076.9754
- 2026-09-10
- 30-day average
- 1,089.5883
- Days with data: 30
- 30-day change
- +1.82%
- since 2026-08-28
1,103.1049
1,076.97542026-08-28 → 2026-09-26
| Date | 1 EUR in CLP | Daily change |
|---|---|---|
| 2026-09-26 | 1,098.3865 | 0.00% |
| 2026-09-25 | 1,098.3865 | +0.31% |
| 2026-09-24 | 1,094.9547 | +1.33% |
| 2026-09-23 | 1,080.6119 | -0.55% |
| 2026-09-22 | 1,086.5494 | -1.50% |
| 2026-09-21 | 1,103.1049 | +0.32% |
| 2026-09-20 | 1,099.5808 | +0.01% |
| 2026-09-19 | 1,099.4299 | -0.11% |
| 2026-09-18 | 1,100.6419 | +0.21% |
| 2026-09-17 | 1,098.3269 | -0.24% |
| 2026-09-16 | 1,101.004 | -0.12% |
| 2026-09-15 | 1,102.3278 | +1.57% |
| 2026-09-14 | 1,085.2392 | -0.66% |
| 2026-09-13 | 1,092.4965 | +0.01% |
| 2026-09-12 | 1,092.4081 | +0.15% |
| Date | 1 EUR in CLP | Daily change |
|---|---|---|
| 2026-09-11 | 1,090.7389 | +1.28% |
| 2026-09-10 | 1,076.9754 | -0.07% |
| 2026-09-09 | 1,077.7605 | -0.67% |
| 2026-09-08 | 1,085.084 | +0.15% |
| 2026-09-07 | 1,083.4717 | -0.24% |
| 2026-09-06 | 1,086.0765 | +0.00% |
| 2026-09-05 | 1,086.0592 | +0.20% |
| 2026-09-04 | 1,083.8659 | -0.49% |
| 2026-09-03 | 1,089.2493 | +0.50% |
| 2026-09-02 | 1,083.8579 | +0.06% |
| 2026-09-01 | 1,083.2529 | +0.28% |
| 2026-08-31 | 1,080.2448 | -0.39% |
| 2026-08-30 | 1,084.4383 | +0.00% |
| 2026-08-29 | 1,084.4 | +0.53% |
| 2026-08-28 | 1,078.7238 | — |
EUR to CLP conversion table
1 EUR1,098.3865 CLP
5 EUR5,491.9326 CLP
10 EUR10,983.865 CLP
25 EUR27,459.663 CLP
50 EUR54,919.326 CLP
100 EUR109,838.65 CLP
500 EUR549,193.26 CLP
1,000 EUR1,098,386.5 CLP
5,000 EUR5,491,932.6 CLP
10,000 EUR10,983,865 CLP
Get the EUR/CLP rate in your app
One GET request returns the latest EUR → CLP rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/EUR/CLP"fetch('https://rate-api.com/api/v1/pair/EUR/CLP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} CLP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/CLP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} CLP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/CLP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} CLP\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "CLP"
},
"rate": 1098.3865,
"timestamp": 1790429388,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
CLP to EURChilean Peso → Euro0.00091043Convert EUR to other currencies
Convert other currencies to CLP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.