Convert PLN to AUD
Polish Złoty → Australian Dollar
1 PLN = 0.371014 AUD(1 AUD = 2.695314 PLN)
Currency converter
1 PLN =
0.37101 AUD
PLN to AUD: last 30 days
Over the last 30 days, 1 PLN traded between 0.36887 and 0.3747 AUD, averaging 0.3723 AUD. The PLN/AUD rate is down 0.58% since 2026-08-28.
- 30-day high
- 0.3747
- 2026-09-01
- 30-day low
- 0.36887
- 2026-09-18
- 30-day average
- 0.3723
- Days with data: 30
- 30-day change
- -0.58%
- since 2026-08-28
0.3747
0.368872026-08-28 → 2026-09-26
| Date | 1 PLN in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.37101 | 0.00% |
| 2026-09-25 | 0.37101 | +0.51% |
| 2026-09-24 | 0.36914 | +0.06% |
| 2026-09-23 | 0.36892 | -0.50% |
| 2026-09-22 | 0.37078 | +0.26% |
| 2026-09-21 | 0.3698 | +0.25% |
| 2026-09-20 | 0.36887 | 0.00% |
| 2026-09-19 | 0.36887 | 0.00% |
| 2026-09-18 | 0.36887 | -0.40% |
| 2026-09-17 | 0.37033 | -0.47% |
| 2026-09-16 | 0.3721 | -0.28% |
| 2026-09-15 | 0.37313 | -0.01% |
| 2026-09-14 | 0.37315 | -0.14% |
| 2026-09-13 | 0.37368 | 0.00% |
| 2026-09-12 | 0.37368 | 0.00% |
| Date | 1 PLN in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.37368 | -0.10% |
| 2026-09-10 | 0.37407 | +0.09% |
| 2026-09-09 | 0.37373 | +0.24% |
| 2026-09-08 | 0.37283 | -0.24% |
| 2026-09-07 | 0.37374 | -0.05% |
| 2026-09-06 | 0.37392 | 0.00% |
| 2026-09-05 | 0.37392 | 0.00% |
| 2026-09-04 | 0.37392 | +0.19% |
| 2026-09-03 | 0.37322 | -0.32% |
| 2026-09-02 | 0.37441 | -0.08% |
| 2026-09-01 | 0.3747 | +0.16% |
| 2026-08-31 | 0.37411 | +0.25% |
| 2026-08-30 | 0.37317 | 0.00% |
| 2026-08-29 | 0.37317 | 0.00% |
| 2026-08-28 | 0.37317 | — |
PLN to AUD conversion table
1 PLN0.37101 AUD
5 PLN1.8551 AUD
10 PLN3.7101 AUD
25 PLN9.2754 AUD
50 PLN18.5507 AUD
100 PLN37.1014 AUD
500 PLN185.5071 AUD
1,000 PLN371.0142 AUD
5,000 PLN1,855.0711 AUD
10,000 PLN3,710.1423 AUD
Get the PLN/AUD rate in your app
One GET request returns the latest PLN → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/PLN/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PLN = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PLN/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PLN = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PLN/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "PLN",
"to": "AUD"
},
"rate": 0.371,
"timestamp": 1790435062,
"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
AUD to PLNAustralian Dollar → Polish Złoty2.6953Convert PLN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.