Convert AUD to XDR
Australian Dollar → IMF Special Drawing Rights
1 AUD = 0.513577 XDR(1 XDR = 1.947126 AUD)
Currency converter
1 AUD =
0.51358 XDR
AUD to XDR: last 30 days
Over the last 30 days, 1 AUD traded between 0.50342 and 0.52634 XDR, averaging 0.52102 XDR. The AUD/XDR rate is down 2.06% since 2026-08-29.
- 30-day high
- 0.52634
- 2026-09-09
- 30-day low
- 0.50342
- 2026-09-18
- 30-day average
- 0.52102
- Days with data: 30
- 30-day change
- -2.06%
- since 2026-08-29
0.52634
0.503422026-08-29 → 2026-09-27
| Date | 1 AUD in XDR | Daily change |
|---|---|---|
| 2026-09-27 | 0.51358 | 0.00% |
| 2026-09-26 | 0.51358 | -0.73% |
| 2026-09-25 | 0.51737 | +0.25% |
| 2026-09-24 | 0.51609 | -0.35% |
| 2026-09-23 | 0.51791 | -0.49% |
| 2026-09-22 | 0.52047 | -0.51% |
| 2026-09-21 | 0.52313 | +0.60% |
| 2026-09-20 | 0.51999 | -0.15% |
| 2026-09-19 | 0.52077 | +3.45% |
| 2026-09-18 | 0.50342 | -3.10% |
| 2026-09-17 | 0.51953 | -0.28% |
| 2026-09-16 | 0.52097 | +0.15% |
| 2026-09-15 | 0.52019 | +0.09% |
| 2026-09-14 | 0.51971 | -0.52% |
| 2026-09-13 | 0.52245 | -0.00% |
| Date | 1 AUD in XDR | Daily change |
|---|---|---|
| 2026-09-12 | 0.52245 | +0.04% |
| 2026-09-11 | 0.52223 | -0.14% |
| 2026-09-10 | 0.52297 | -0.64% |
| 2026-09-09 | 0.52634 | +0.09% |
| 2026-09-08 | 0.52588 | -0.00% |
| 2026-09-07 | 0.52588 | +0.22% |
| 2026-09-06 | 0.52472 | -0.01% |
| 2026-09-05 | 0.52476 | -0.15% |
| 2026-09-04 | 0.52554 | -0.07% |
| 2026-09-03 | 0.52589 | +0.70% |
| 2026-09-02 | 0.52224 | +0.11% |
| 2026-09-01 | 0.52168 | -0.11% |
| 2026-08-31 | 0.52226 | -0.37% |
| 2026-08-30 | 0.52419 | -0.03% |
| 2026-08-29 | 0.52436 | — |
AUD to XDR conversion table
1 AUD0.51358 XDR
5 AUD2.5679 XDR
10 AUD5.1358 XDR
25 AUD12.8394 XDR
50 AUD25.6789 XDR
100 AUD51.3577 XDR
500 AUD256.7887 XDR
1,000 AUD513.5775 XDR
5,000 AUD2,567.8873 XDR
10,000 AUD5,135.7747 XDR
Get the AUD/XDR rate in your app
One GET request returns the latest AUD → XDR 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/XDR"fetch('https://rate-api.com/api/v1/pair/AUD/XDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} XDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/XDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} XDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/XDR');
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']} XDR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "XDR"
},
"rate": 0.5136,
"timestamp": 1790470777,
"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
XDR to AUDIMF Special Drawing Rights → Australian Dollar1.9471Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.