Convert AUD to XCD
Australian Dollar → East Caribbean Dollar
1 AUD = 1.898157 XCD(1 XCD = 0.526827 AUD)
Currency converter
1 AUD =
1.8982 XCD
AUD to XCD: last 30 days
Over the last 30 days, 1 AUD traded between 1.8972 and 1.9559 XCD, averaging 1.9332 XCD. The AUD/XCD rate is down 2.55% since 2026-08-28.
- 30-day high
- 1.9559
- 2026-09-09
- 30-day low
- 1.8972
- 2026-09-24
- 30-day average
- 1.9332
- Days with data: 30
- 30-day change
- -2.55%
- since 2026-08-28
1.9559
1.89722026-08-28 → 2026-09-26
| Date | 1 AUD in XCD | Daily change |
|---|---|---|
| 2026-09-26 | 1.8982 | 0.00% |
| 2026-09-25 | 1.8982 | +0.05% |
| 2026-09-24 | 1.8972 | -0.58% |
| 2026-09-23 | 1.9082 | -0.88% |
| 2026-09-22 | 1.9251 | -0.37% |
| 2026-09-21 | 1.9323 | +0.49% |
| 2026-09-20 | 1.9229 | -0.07% |
| 2026-09-19 | 1.9241 | -0.00% |
| 2026-09-18 | 1.9242 | +0.00% |
| 2026-09-17 | 1.9242 | -0.32% |
| 2026-09-16 | 1.9304 | +0.07% |
| 2026-09-15 | 1.929 | -0.06% |
| 2026-09-14 | 1.9302 | -0.34% |
| 2026-09-13 | 1.9367 | -0.09% |
| 2026-09-12 | 1.9384 | -0.16% |
| Date | 1 AUD in XCD | Daily change |
|---|---|---|
| 2026-09-11 | 1.9414 | -0.16% |
| 2026-09-10 | 1.9446 | -0.58% |
| 2026-09-09 | 1.9559 | +0.15% |
| 2026-09-08 | 1.9531 | -0.03% |
| 2026-09-07 | 1.9536 | +0.42% |
| 2026-09-06 | 1.9454 | -0.07% |
| 2026-09-05 | 1.9467 | -0.14% |
| 2026-09-04 | 1.9494 | +0.11% |
| 2026-09-03 | 1.9473 | +0.63% |
| 2026-09-02 | 1.935 | +0.08% |
| 2026-09-01 | 1.9334 | -0.09% |
| 2026-08-31 | 1.9352 | -0.42% |
| 2026-08-30 | 1.9432 | -0.06% |
| 2026-08-29 | 1.9444 | -0.18% |
| 2026-08-28 | 1.9479 | — |
AUD to XCD conversion table
1 AUD1.8982 XCD
5 AUD9.4908 XCD
10 AUD18.9816 XCD
25 AUD47.4539 XCD
50 AUD94.9078 XCD
100 AUD189.8157 XCD
500 AUD949.0783 XCD
1,000 AUD1,898.1566 XCD
5,000 AUD9,490.783 XCD
10,000 AUD18,981.566 XCD
Get the AUD/XCD rate in your app
One GET request returns the latest AUD → XCD 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/XCD"fetch('https://rate-api.com/api/v1/pair/AUD/XCD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} XCD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/XCD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} XCD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/XCD');
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']} XCD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "XCD"
},
"rate": 1.8982,
"timestamp": 1790429292,
"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
XCD to AUDEast Caribbean Dollar → Australian Dollar0.52683Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.