Convert XDR to AUD
IMF Special Drawing Rights → Australian Dollar
1 XDR = 1.932859 AUD(1 AUD = 0.517368 XDR)
Currency converter
1 XDR =
1.9329 AUD
XDR to AUD: last 30 days
Over the last 30 days, 1 XDR traded between 1.8999 and 1.9864 AUD, averaging 1.9176 AUD. The XDR/AUD rate is up 1.44% since 2026-08-28.
- 30-day high
- 1.9864
- 2026-09-18
- 30-day low
- 1.8999
- 2026-09-09
- 30-day average
- 1.9176
- Days with data: 30
- 30-day change
- +1.44%
- since 2026-08-28
1.9864
1.89992026-08-28 → 2026-09-26
| Date | 1 XDR in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 1.9329 | 0.00% |
| 2026-09-25 | 1.9329 | -0.25% |
| 2026-09-24 | 1.9376 | +0.35% |
| 2026-09-23 | 1.9308 | +0.49% |
| 2026-09-22 | 1.9213 | +0.51% |
| 2026-09-21 | 1.9116 | -0.60% |
| 2026-09-20 | 1.9231 | +0.15% |
| 2026-09-19 | 1.9202 | -3.33% |
| 2026-09-18 | 1.9864 | +3.20% |
| 2026-09-17 | 1.9248 | +0.28% |
| 2026-09-16 | 1.9195 | -0.15% |
| 2026-09-15 | 1.9224 | -0.09% |
| 2026-09-14 | 1.9241 | +0.53% |
| 2026-09-13 | 1.9141 | +0.00% |
| 2026-09-12 | 1.9141 | -0.04% |
| Date | 1 XDR in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 1.9149 | +0.14% |
| 2026-09-10 | 1.9122 | +0.65% |
| 2026-09-09 | 1.8999 | -0.09% |
| 2026-09-08 | 1.9016 | +0.00% |
| 2026-09-07 | 1.9016 | -0.22% |
| 2026-09-06 | 1.9058 | +0.01% |
| 2026-09-05 | 1.9056 | +0.15% |
| 2026-09-04 | 1.9028 | +0.07% |
| 2026-09-03 | 1.9015 | -0.69% |
| 2026-09-02 | 1.9148 | -0.11% |
| 2026-09-01 | 1.9169 | +0.11% |
| 2026-08-31 | 1.9147 | +0.37% |
| 2026-08-30 | 1.9077 | +0.03% |
| 2026-08-29 | 1.9071 | +0.09% |
| 2026-08-28 | 1.9054 | — |
XDR to AUD conversion table
1 XDR1.9329 AUD
5 XDR9.6643 AUD
10 XDR19.3286 AUD
25 XDR48.3215 AUD
50 XDR96.643 AUD
100 XDR193.2859 AUD
500 XDR966.4296 AUD
1,000 XDR1,932.8591 AUD
5,000 XDR9,664.2957 AUD
10,000 XDR19,328.591 AUD
Get the XDR/AUD rate in your app
One GET request returns the latest XDR → 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/XDR/AUD"fetch('https://rate-api.com/api/v1/pair/XDR/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XDR = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XDR/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XDR = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XDR/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 XDR = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "XDR",
"to": "AUD"
},
"rate": 1.9329,
"timestamp": 1790435064,
"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 XDRAustralian Dollar → IMF Special Drawing Rights0.51737Convert XDR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.