Convert EUR to PLN
Euro → Polish Złoty
1 EUR = 4.3718 PLN(1 PLN = 0.228739 EUR)
Currency converter
1 EUR =
4.3718 PLN
EUR to PLN: last 30 days
Over the last 30 days, 1 EUR traded between 4.3102 and 4.3823 PLN, averaging 4.3396 PLN. The EUR/PLN rate is up 0.81% since 2026-08-28.
- 30-day high
- 4.3823
- 2026-09-24
- 30-day low
- 4.3102
- 2026-09-07
- 30-day average
- 4.3396
- Days with data: 30
- 30-day change
- +0.81%
- since 2026-08-28
4.3823
4.31022026-08-28 → 2026-09-26
| Date | 1 EUR in PLN | Daily change |
|---|---|---|
| 2026-09-26 | 4.3718 | 0.00% |
| 2026-09-25 | 4.3718 | -0.24% |
| 2026-09-24 | 4.3823 | +0.13% |
| 2026-09-23 | 4.3765 | +0.65% |
| 2026-09-22 | 4.348 | -0.11% |
| 2026-09-21 | 4.353 | -0.24% |
| 2026-09-20 | 4.3635 | 0.00% |
| 2026-09-19 | 4.3635 | 0.00% |
| 2026-09-18 | 4.3635 | +0.13% |
| 2026-09-17 | 4.358 | +0.25% |
| 2026-09-16 | 4.3472 | +0.17% |
| 2026-09-15 | 4.34 | -0.04% |
| 2026-09-14 | 4.3418 | +0.39% |
| 2026-09-13 | 4.325 | 0.00% |
| 2026-09-12 | 4.325 | 0.00% |
| Date | 1 EUR in PLN | Daily change |
|---|---|---|
| 2026-09-11 | 4.325 | +0.07% |
| 2026-09-10 | 4.322 | +0.15% |
| 2026-09-09 | 4.3153 | -0.06% |
| 2026-09-08 | 4.3179 | +0.18% |
| 2026-09-07 | 4.3102 | -0.11% |
| 2026-09-06 | 4.3148 | 0.00% |
| 2026-09-05 | 4.3148 | 0.00% |
| 2026-09-04 | 4.3148 | -0.27% |
| 2026-09-03 | 4.3264 | -0.00% |
| 2026-09-02 | 4.3265 | -0.11% |
| 2026-09-01 | 4.3313 | +0.08% |
| 2026-08-31 | 4.328 | -0.20% |
| 2026-08-30 | 4.3365 | 0.00% |
| 2026-08-29 | 4.3365 | 0.00% |
| 2026-08-28 | 4.3365 | — |
EUR to PLN conversion table
1 EUR4.3718 PLN
5 EUR21.859 PLN
10 EUR43.718 PLN
25 EUR109.295 PLN
50 EUR218.59 PLN
100 EUR437.18 PLN
500 EUR2,185.9 PLN
1,000 EUR4,371.8 PLN
5,000 EUR21,859 PLN
10,000 EUR43,718 PLN
Get the EUR/PLN rate in your app
One GET request returns the latest EUR → PLN 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/PLN"fetch('https://rate-api.com/api/v1/pair/EUR/PLN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} PLN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/PLN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} PLN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/PLN');
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']} PLN\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "PLN"
},
"rate": 4.3718,
"timestamp": 1790429389,
"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
PLN to EURPolish Złoty → Euro0.22874Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.