Convert EUR to AUD
Euro → Australian Dollar
1 EUR = 1.622 AUD(1 AUD = 0.616523 EUR)
Currency converter
1 EUR =
1.622 AUD
EUR to AUD: last 30 days
Over the last 30 days, 1 EUR traded between 1.6096 and 1.623 AUD, averaging 1.6156 AUD. The EUR/AUD rate is up 0.23% since 2026-08-28.
- 30-day high
- 1.623
- 2026-09-01
- 30-day low
- 1.6096
- 2026-09-18
- 30-day average
- 1.6156
- Days with data: 30
- 30-day change
- +0.23%
- since 2026-08-28
1.623
1.60962026-08-28 → 2026-09-26
| Date | 1 EUR in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 1.622 | 0.00% |
| 2026-09-25 | 1.622 | +0.27% |
| 2026-09-24 | 1.6177 | +0.19% |
| 2026-09-23 | 1.6146 | +0.15% |
| 2026-09-22 | 1.6122 | +0.15% |
| 2026-09-21 | 1.6098 | +0.01% |
| 2026-09-20 | 1.6096 | 0.00% |
| 2026-09-19 | 1.6096 | 0.00% |
| 2026-09-18 | 1.6096 | -0.27% |
| 2026-09-17 | 1.6139 | -0.23% |
| 2026-09-16 | 1.6176 | -0.11% |
| 2026-09-15 | 1.6194 | -0.05% |
| 2026-09-14 | 1.6201 | +0.25% |
| 2026-09-13 | 1.6162 | 0.00% |
| 2026-09-12 | 1.6162 | 0.00% |
| Date | 1 EUR in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 1.6162 | -0.03% |
| 2026-09-10 | 1.6167 | +0.25% |
| 2026-09-09 | 1.6128 | +0.18% |
| 2026-09-08 | 1.6098 | -0.07% |
| 2026-09-07 | 1.6109 | -0.15% |
| 2026-09-06 | 1.6134 | 0.00% |
| 2026-09-05 | 1.6134 | 0.00% |
| 2026-09-04 | 1.6134 | -0.08% |
| 2026-09-03 | 1.6147 | -0.32% |
| 2026-09-02 | 1.6199 | -0.19% |
| 2026-09-01 | 1.623 | +0.24% |
| 2026-08-31 | 1.6191 | +0.06% |
| 2026-08-30 | 1.6183 | 0.00% |
| 2026-08-29 | 1.6183 | 0.00% |
| 2026-08-28 | 1.6183 | — |
EUR to AUD conversion table
1 EUR1.622 AUD
5 EUR8.11 AUD
10 EUR16.22 AUD
25 EUR40.55 AUD
50 EUR81.1 AUD
100 EUR162.2 AUD
500 EUR811 AUD
1,000 EUR1,622 AUD
5,000 EUR8,110 AUD
10,000 EUR16,220 AUD
Get the EUR/AUD rate in your app
One GET request returns the latest EUR → 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/EUR/AUD"fetch('https://rate-api.com/api/v1/pair/EUR/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "AUD"
},
"rate": 1.622,
"timestamp": 1790429350,
"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 EURAustralian Dollar → Euro0.61652Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.