Convert EUR to PEN
Euro → Peruvian Sol
1 EUR = 3.882396 PEN(1 PEN = 0.257573 EUR)
Currency converter
1 EUR =
3.8824 PEN
EUR to PEN: last 30 days
Over the last 30 days, 1 EUR traded between 3.8335 and 3.9109 PEN, averaging 3.8856 PEN. The EUR/PEN rate is down 0.49% since 2026-08-28.
- 30-day high
- 3.9109
- 2026-08-31
- 30-day low
- 3.8335
- 2026-09-23
- 30-day average
- 3.8856
- Days with data: 30
- 30-day change
- -0.49%
- since 2026-08-28
3.9109
3.83352026-08-28 → 2026-09-26
| Date | 1 EUR in PEN | Daily change |
|---|---|---|
| 2026-09-26 | 3.8824 | 0.00% |
| 2026-09-25 | 3.8824 | +0.85% |
| 2026-09-24 | 3.8497 | +0.42% |
| 2026-09-23 | 3.8335 | -0.76% |
| 2026-09-22 | 3.8629 | -0.40% |
| 2026-09-21 | 3.8783 | +0.28% |
| 2026-09-20 | 3.8675 | +0.01% |
| 2026-09-19 | 3.8673 | -0.03% |
| 2026-09-18 | 3.8684 | -0.22% |
| 2026-09-17 | 3.8771 | +0.17% |
| 2026-09-16 | 3.8705 | -0.18% |
| 2026-09-15 | 3.8774 | -0.13% |
| 2026-09-14 | 3.8826 | -0.16% |
| 2026-09-13 | 3.8886 | -0.01% |
| 2026-09-12 | 3.8889 | -0.01% |
| Date | 1 EUR in PEN | Daily change |
|---|---|---|
| 2026-09-11 | 3.8892 | -0.05% |
| 2026-09-10 | 3.891 | -0.40% |
| 2026-09-09 | 3.9065 | +0.23% |
| 2026-09-08 | 3.8977 | -0.04% |
| 2026-09-07 | 3.8993 | +0.03% |
| 2026-09-06 | 3.8983 | +0.04% |
| 2026-09-05 | 3.8966 | -0.03% |
| 2026-09-04 | 3.8979 | -0.15% |
| 2026-09-03 | 3.9035 | +0.19% |
| 2026-09-02 | 3.8961 | -0.06% |
| 2026-09-01 | 3.8983 | -0.32% |
| 2026-08-31 | 3.9109 | +0.22% |
| 2026-08-30 | 3.9023 | -0.01% |
| 2026-08-29 | 3.9026 | +0.03% |
| 2026-08-28 | 3.9015 | — |
EUR to PEN conversion table
1 EUR3.8824 PEN
5 EUR19.412 PEN
10 EUR38.824 PEN
25 EUR97.0599 PEN
50 EUR194.1198 PEN
100 EUR388.2396 PEN
500 EUR1,941.1979 PEN
1,000 EUR3,882.3957 PEN
5,000 EUR19,411.979 PEN
10,000 EUR38,823.957 PEN
Get the EUR/PEN rate in your app
One GET request returns the latest EUR → PEN 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/PEN"fetch('https://rate-api.com/api/v1/pair/EUR/PEN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} PEN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/PEN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} PEN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/PEN');
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']} PEN\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "PEN"
},
"rate": 3.8824,
"timestamp": 1790429371,
"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
PEN to EURPeruvian Sol → Euro0.25757Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.