Convert AUD to PLN
Australian Dollar → Polish Złoty
1 AUD = 2.695314 PLN(1 PLN = 0.371014 AUD)
Currency converter
1 AUD =
2.6953 PLN
AUD to PLN: last 30 days
Over the last 30 days, 1 AUD traded between 2.6688 and 2.711 PLN, averaging 2.6866 PLN. The AUD/PLN rate is up 0.58% since 2026-08-29.
- 30-day high
- 2.711
- 2026-09-18
- 30-day low
- 2.6688
- 2026-09-01
- 30-day average
- 2.6866
- Days with data: 30
- 30-day change
- +0.58%
- since 2026-08-29
2.711
2.66882026-08-29 → 2026-09-27
| Date | 1 AUD in PLN | Daily change |
|---|---|---|
| 2026-09-27 | 2.6953 | 0.00% |
| 2026-09-26 | 2.6953 | 0.00% |
| 2026-09-25 | 2.6953 | -0.50% |
| 2026-09-24 | 2.709 | -0.06% |
| 2026-09-23 | 2.7106 | +0.50% |
| 2026-09-22 | 2.697 | -0.26% |
| 2026-09-21 | 2.7041 | -0.25% |
| 2026-09-20 | 2.711 | 0.00% |
| 2026-09-19 | 2.711 | 0.00% |
| 2026-09-18 | 2.711 | +0.40% |
| 2026-09-17 | 2.7003 | +0.48% |
| 2026-09-16 | 2.6875 | +0.28% |
| 2026-09-15 | 2.6801 | +0.01% |
| 2026-09-14 | 2.6799 | +0.14% |
| 2026-09-13 | 2.6761 | 0.00% |
| Date | 1 AUD in PLN | Daily change |
|---|---|---|
| 2026-09-12 | 2.6761 | 0.00% |
| 2026-09-11 | 2.6761 | +0.10% |
| 2026-09-10 | 2.6733 | -0.09% |
| 2026-09-09 | 2.6757 | -0.24% |
| 2026-09-08 | 2.6822 | +0.25% |
| 2026-09-07 | 2.6756 | +0.05% |
| 2026-09-06 | 2.6744 | 0.00% |
| 2026-09-05 | 2.6744 | 0.00% |
| 2026-09-04 | 2.6744 | -0.19% |
| 2026-09-03 | 2.6794 | +0.32% |
| 2026-09-02 | 2.6709 | +0.08% |
| 2026-09-01 | 2.6688 | -0.16% |
| 2026-08-31 | 2.673 | -0.25% |
| 2026-08-30 | 2.6798 | 0.00% |
| 2026-08-29 | 2.6798 | — |
AUD to PLN conversion table
1 AUD2.6953 PLN
5 AUD13.4766 PLN
10 AUD26.9531 PLN
25 AUD67.3829 PLN
50 AUD134.7657 PLN
100 AUD269.5314 PLN
500 AUD1,347.6572 PLN
1,000 AUD2,695.3144 PLN
5,000 AUD13,476.572 PLN
10,000 AUD26,953.144 PLN
Get the AUD/PLN rate in your app
One GET request returns the latest AUD → 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/AUD/PLN"fetch('https://rate-api.com/api/v1/pair/AUD/PLN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} PLN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/PLN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} PLN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/PLN');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} PLN\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "PLN"
},
"rate": 2.6953,
"timestamp": 1790470776,
"date": "2026-09-27"
}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 AUDPolish Złoty → Australian Dollar0.37101Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.