Convert PLN to EUR
Polish Złoty → Euro
1 PLN = 0.228739 EUR(1 EUR = 4.3718 PLN)
Currency converter
1 PLN =
0.22874 EUR
PLN to EUR: last 30 days
Over the last 30 days, 1 PLN traded between 0.22819 and 0.23201 EUR, averaging 0.23044 EUR. The PLN/EUR rate is down 0.81% since 2026-08-28.
- 30-day high
- 0.23201
- 2026-09-07
- 30-day low
- 0.22819
- 2026-09-24
- 30-day average
- 0.23044
- Days with data: 30
- 30-day change
- -0.81%
- since 2026-08-28
0.23201
0.228192026-08-28 → 2026-09-26
| Date | 1 PLN in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.22874 | 0.00% |
| 2026-09-25 | 0.22874 | +0.24% |
| 2026-09-24 | 0.22819 | -0.13% |
| 2026-09-23 | 0.22849 | -0.65% |
| 2026-09-22 | 0.22999 | +0.11% |
| 2026-09-21 | 0.22973 | +0.24% |
| 2026-09-20 | 0.22917 | 0.00% |
| 2026-09-19 | 0.22917 | 0.00% |
| 2026-09-18 | 0.22917 | -0.13% |
| 2026-09-17 | 0.22946 | -0.25% |
| 2026-09-16 | 0.23003 | -0.17% |
| 2026-09-15 | 0.23041 | +0.04% |
| 2026-09-14 | 0.23032 | -0.39% |
| 2026-09-13 | 0.23121 | 0.00% |
| 2026-09-12 | 0.23121 | 0.00% |
| Date | 1 PLN in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.23121 | -0.07% |
| 2026-09-10 | 0.23138 | -0.15% |
| 2026-09-09 | 0.23173 | +0.06% |
| 2026-09-08 | 0.2316 | -0.18% |
| 2026-09-07 | 0.23201 | +0.11% |
| 2026-09-06 | 0.23176 | 0.00% |
| 2026-09-05 | 0.23176 | 0.00% |
| 2026-09-04 | 0.23176 | +0.27% |
| 2026-09-03 | 0.23114 | +0.00% |
| 2026-09-02 | 0.23114 | +0.11% |
| 2026-09-01 | 0.23088 | -0.08% |
| 2026-08-31 | 0.23106 | +0.20% |
| 2026-08-30 | 0.2306 | 0.00% |
| 2026-08-29 | 0.2306 | 0.00% |
| 2026-08-28 | 0.2306 | — |
PLN to EUR conversion table
1 PLN0.22874 EUR
5 PLN1.1437 EUR
10 PLN2.2874 EUR
25 PLN5.7185 EUR
50 PLN11.4369 EUR
100 PLN22.8739 EUR
500 PLN114.3694 EUR
1,000 PLN228.7387 EUR
5,000 PLN1,143.6937 EUR
10,000 PLN2,287.3873 EUR
Get the PLN/EUR rate in your app
One GET request returns the latest PLN → 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/PLN/EUR"fetch('https://rate-api.com/api/v1/pair/PLN/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PLN = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PLN/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PLN = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PLN/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PLN = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "PLN",
"to": "EUR"
},
"rate": 0.2287,
"timestamp": 1790432122,
"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 PLNEuro → Polish Złoty4.3718Convert PLN to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.