Convert XCD to AUD
East Caribbean Dollar → Australian Dollar
1 XCD = 0.526827 AUD(1 AUD = 1.898157 XCD)
Currency converter
1 XCD =
0.52683 AUD
XCD to AUD: last 30 days
Over the last 30 days, 1 XCD traded between 0.51127 and 0.52709 AUD, averaging 0.51732 AUD. The XCD/AUD rate is up 2.62% since 2026-08-28.
- 30-day high
- 0.52709
- 2026-09-24
- 30-day low
- 0.51127
- 2026-09-09
- 30-day average
- 0.51732
- Days with data: 30
- 30-day change
- +2.62%
- since 2026-08-28
0.52709
0.511272026-08-28 → 2026-09-26
| Date | 1 XCD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.52683 | 0.00% |
| 2026-09-25 | 0.52683 | -0.05% |
| 2026-09-24 | 0.52709 | +0.58% |
| 2026-09-23 | 0.52406 | +0.88% |
| 2026-09-22 | 0.51946 | +0.38% |
| 2026-09-21 | 0.51752 | -0.49% |
| 2026-09-20 | 0.52005 | +0.07% |
| 2026-09-19 | 0.51971 | +0.00% |
| 2026-09-18 | 0.51969 | -0.00% |
| 2026-09-17 | 0.5197 | +0.32% |
| 2026-09-16 | 0.51803 | -0.07% |
| 2026-09-15 | 0.5184 | +0.06% |
| 2026-09-14 | 0.51809 | +0.34% |
| 2026-09-13 | 0.51635 | +0.09% |
| 2026-09-12 | 0.5159 | +0.16% |
| Date | 1 XCD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.51508 | +0.16% |
| 2026-09-10 | 0.51425 | +0.58% |
| 2026-09-09 | 0.51127 | -0.15% |
| 2026-09-08 | 0.51202 | +0.03% |
| 2026-09-07 | 0.51187 | -0.42% |
| 2026-09-06 | 0.51403 | +0.07% |
| 2026-09-05 | 0.51368 | +0.14% |
| 2026-09-04 | 0.51297 | -0.11% |
| 2026-09-03 | 0.51354 | -0.63% |
| 2026-09-02 | 0.51679 | -0.08% |
| 2026-09-01 | 0.51723 | +0.09% |
| 2026-08-31 | 0.51675 | +0.42% |
| 2026-08-30 | 0.5146 | +0.06% |
| 2026-08-29 | 0.5143 | +0.18% |
| 2026-08-28 | 0.51338 | — |
XCD to AUD conversion table
1 XCD0.52683 AUD
5 XCD2.6341 AUD
10 XCD5.2683 AUD
25 XCD13.1707 AUD
50 XCD26.3413 AUD
100 XCD52.6827 AUD
500 XCD263.4135 AUD
1,000 XCD526.8269 AUD
5,000 XCD2,634.1346 AUD
10,000 XCD5,268.2692 AUD
Get the XCD/AUD rate in your app
One GET request returns the latest XCD → 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/XCD/AUD"fetch('https://rate-api.com/api/v1/pair/XCD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XCD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XCD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XCD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XCD/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 XCD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "XCD",
"to": "AUD"
},
"rate": 0.5268,
"timestamp": 1790432044,
"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 XCDAustralian Dollar → East Caribbean Dollar1.8982Convert XCD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.