Convert AUD to AED
Australian Dollar → UAE Dirham
1 AUD = 2.581845 AED(1 AED = 0.38732 AUD)
Currency converter
1 AUD =
2.5818 AED
AUD to AED: last 30 days
Over the last 30 days, 1 AUD traded between 2.5805 and 2.6533 AED, averaging 2.6253 AED. The AUD/AED rate is down 2.29% since 2026-08-28.
- 30-day high
- 2.6533
- 2026-09-09
- 30-day low
- 2.5805
- 2026-09-24
- 30-day average
- 2.6253
- Days with data: 30
- 30-day change
- -2.29%
- since 2026-08-28
2.6533
2.58052026-08-28 → 2026-09-26
| Date | 1 AUD in AED | Daily change |
|---|---|---|
| 2026-09-26 | 2.5818 | 0.00% |
| 2026-09-25 | 2.5818 | +0.05% |
| 2026-09-24 | 2.5805 | -0.58% |
| 2026-09-23 | 2.5955 | -0.60% |
| 2026-09-22 | 2.6113 | -0.38% |
| 2026-09-21 | 2.6213 | +0.25% |
| 2026-09-20 | 2.6148 | 0.00% |
| 2026-09-19 | 2.6148 | +0.00% |
| 2026-09-18 | 2.6148 | +0.09% |
| 2026-09-17 | 2.6126 | -0.26% |
| 2026-09-16 | 2.6193 | +0.09% |
| 2026-09-15 | 2.6169 | -0.06% |
| 2026-09-14 | 2.6184 | -0.60% |
| 2026-09-13 | 2.6341 | 0.00% |
| 2026-09-12 | 2.6341 | 0.00% |
| Date | 1 AUD in AED | Daily change |
|---|---|---|
| 2026-09-11 | 2.6341 | -0.17% |
| 2026-09-10 | 2.6387 | -0.55% |
| 2026-09-09 | 2.6533 | +0.14% |
| 2026-09-08 | 2.6495 | 0.00% |
| 2026-09-07 | 2.6495 | +0.15% |
| 2026-09-06 | 2.6455 | 0.00% |
| 2026-09-05 | 2.6455 | 0.00% |
| 2026-09-04 | 2.6455 | +0.14% |
| 2026-09-03 | 2.6417 | +0.64% |
| 2026-09-02 | 2.6249 | +0.09% |
| 2026-09-01 | 2.6227 | -0.29% |
| 2026-08-31 | 2.6302 | -0.46% |
| 2026-08-30 | 2.6423 | 0.00% |
| 2026-08-29 | 2.6423 | 0.00% |
| 2026-08-28 | 2.6423 | — |
AUD to AED conversion table
1 AUD2.5818 AED
5 AUD12.9092 AED
10 AUD25.8184 AED
25 AUD64.5461 AED
50 AUD129.0922 AED
100 AUD258.1845 AED
500 AUD1,290.9222 AED
1,000 AUD2,581.8445 AED
5,000 AUD12,909.222 AED
10,000 AUD25,818.445 AED
Get the AUD/AED rate in your app
One GET request returns the latest AUD → AED 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/AED"fetch('https://rate-api.com/api/v1/pair/AUD/AED', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} AED`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/AED",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} AED")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/AED');
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']} AED\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "AED"
},
"rate": 2.5818,
"timestamp": 1790447426,
"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
AED to AUDUAE Dirham → Australian Dollar0.38732Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.