Convert AUD to EUR
Australian Dollar → Euro
1 AUD = 0.616523 EUR(1 EUR = 1.622 AUD)
Currency converter
1 AUD =
0.61652 EUR
AUD to EUR: last 30 days
Over the last 30 days, 1 AUD traded between 0.61616 and 0.62129 EUR, averaging 0.61897 EUR. The AUD/EUR rate is down 0.23% since 2026-08-28.
- 30-day high
- 0.62129
- 2026-09-18
- 30-day low
- 0.61616
- 2026-09-01
- 30-day average
- 0.61897
- Days with data: 30
- 30-day change
- -0.23%
- since 2026-08-28
0.62129
0.616162026-08-28 → 2026-09-26
| Date | 1 AUD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.61652 | 0.00% |
| 2026-09-25 | 0.61652 | -0.27% |
| 2026-09-24 | 0.61816 | -0.19% |
| 2026-09-23 | 0.61935 | -0.15% |
| 2026-09-22 | 0.62029 | -0.15% |
| 2026-09-21 | 0.62121 | -0.01% |
| 2026-09-20 | 0.62129 | 0.00% |
| 2026-09-19 | 0.62129 | 0.00% |
| 2026-09-18 | 0.62129 | +0.27% |
| 2026-09-17 | 0.61962 | +0.23% |
| 2026-09-16 | 0.6182 | +0.11% |
| 2026-09-15 | 0.61752 | +0.05% |
| 2026-09-14 | 0.61723 | -0.25% |
| 2026-09-13 | 0.61875 | 0.00% |
| 2026-09-12 | 0.61875 | 0.00% |
| Date | 1 AUD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.61875 | +0.03% |
| 2026-09-10 | 0.61854 | -0.25% |
| 2026-09-09 | 0.62006 | -0.18% |
| 2026-09-08 | 0.62119 | +0.07% |
| 2026-09-07 | 0.62076 | +0.15% |
| 2026-09-06 | 0.61982 | 0.00% |
| 2026-09-05 | 0.61982 | 0.00% |
| 2026-09-04 | 0.61982 | +0.08% |
| 2026-09-03 | 0.61931 | +0.32% |
| 2026-09-02 | 0.61733 | +0.19% |
| 2026-09-01 | 0.61616 | -0.23% |
| 2026-08-31 | 0.61761 | -0.06% |
| 2026-08-30 | 0.61795 | 0.00% |
| 2026-08-29 | 0.61795 | 0.00% |
| 2026-08-28 | 0.61795 | — |
AUD to EUR conversion table
1 AUD0.61652 EUR
5 AUD3.0826 EUR
10 AUD6.1652 EUR
25 AUD15.4131 EUR
50 AUD30.8261 EUR
100 AUD61.6523 EUR
500 AUD308.2614 EUR
1,000 AUD616.5228 EUR
5,000 AUD3,082.6141 EUR
10,000 AUD6,165.2281 EUR
Get the AUD/EUR rate in your app
One GET request returns the latest AUD → 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/AUD/EUR"fetch('https://rate-api.com/api/v1/pair/AUD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "EUR"
},
"rate": 0.6165,
"timestamp": 1790429354,
"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 AUDEuro → Australian Dollar1.622Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.