Convert PEN to EUR
Peruvian Sol → Euro
1 PEN = 0.257573 EUR(1 EUR = 3.882396 PEN)
Currency converter
1 PEN =
0.25757 EUR
PEN to EUR: last 30 days
Over the last 30 days, 1 PEN traded between 0.2557 and 0.26086 EUR, averaging 0.25736 EUR. The PEN/EUR rate is up 0.49% since 2026-08-28.
- 30-day high
- 0.26086
- 2026-09-23
- 30-day low
- 0.2557
- 2026-08-31
- 30-day average
- 0.25736
- Days with data: 30
- 30-day change
- +0.49%
- since 2026-08-28
0.26086
0.25572026-08-28 → 2026-09-26
| Date | 1 PEN in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.25757 | 0.00% |
| 2026-09-25 | 0.25757 | -0.84% |
| 2026-09-24 | 0.25976 | -0.42% |
| 2026-09-23 | 0.26086 | +0.77% |
| 2026-09-22 | 0.25887 | +0.40% |
| 2026-09-21 | 0.25785 | -0.28% |
| 2026-09-20 | 0.25856 | -0.01% |
| 2026-09-19 | 0.25858 | +0.03% |
| 2026-09-18 | 0.25851 | +0.23% |
| 2026-09-17 | 0.25793 | -0.17% |
| 2026-09-16 | 0.25837 | +0.18% |
| 2026-09-15 | 0.2579 | +0.13% |
| 2026-09-14 | 0.25756 | +0.16% |
| 2026-09-13 | 0.25716 | +0.01% |
| 2026-09-12 | 0.25714 | +0.01% |
| Date | 1 PEN in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.25712 | +0.05% |
| 2026-09-10 | 0.257 | +0.40% |
| 2026-09-09 | 0.25598 | -0.22% |
| 2026-09-08 | 0.25656 | +0.04% |
| 2026-09-07 | 0.25646 | -0.03% |
| 2026-09-06 | 0.25652 | -0.04% |
| 2026-09-05 | 0.25664 | +0.03% |
| 2026-09-04 | 0.25655 | +0.15% |
| 2026-09-03 | 0.25618 | -0.19% |
| 2026-09-02 | 0.25666 | +0.06% |
| 2026-09-01 | 0.25652 | +0.32% |
| 2026-08-31 | 0.2557 | -0.22% |
| 2026-08-30 | 0.25626 | +0.01% |
| 2026-08-29 | 0.25624 | -0.03% |
| 2026-08-28 | 0.25631 | — |
PEN to EUR conversion table
1 PEN0.25757 EUR
5 PEN1.2879 EUR
10 PEN2.5757 EUR
25 PEN6.4393 EUR
50 PEN12.8786 EUR
100 PEN25.7573 EUR
500 PEN128.7865 EUR
1,000 PEN257.5729 EUR
5,000 PEN1,287.8646 EUR
10,000 PEN2,575.7292 EUR
Get the PEN/EUR rate in your app
One GET request returns the latest PEN → EUR 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/PEN/EUR"fetch('https://rate-api.com/api/v1/pair/PEN/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PEN = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PEN/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PEN = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PEN/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PEN = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "PEN",
"to": "EUR"
},
"rate": 0.2576,
"timestamp": 1790432118,
"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
EUR to PENEuro → Peruvian Sol3.8824Convert PEN to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.