Convert USD to XCD
US Dollar → East Caribbean Dollar
1 USD = 2.7 XCD(1 XCD = 0.37037 USD)
Currency converter
1 USD =
2.7 XCD
USD to XCD: last 30 days
Over the last 30 days, 1 USD traded between 2.7 and 2.7079 XCD, averaging 2.7043 XCD. The USD/XCD rate is down 0.27% since 2026-08-28.
- 30-day high
- 2.7079
- 2026-09-07
- 30-day low
- 2.7
- 2026-09-23
- 30-day average
- 2.7043
- Days with data: 30
- 30-day change
- -0.27%
- since 2026-08-28
2.7079
2.72026-08-28 → 2026-09-26
| Date | 1 USD in XCD | Daily change |
|---|---|---|
| 2026-09-26 | 2.7 | 0.00% |
| 2026-09-25 | 2.7 | 0.00% |
| 2026-09-24 | 2.7 | 0.00% |
| 2026-09-23 | 2.7 | -0.27% |
| 2026-09-22 | 2.7074 | +0.01% |
| 2026-09-21 | 2.7071 | +0.24% |
| 2026-09-20 | 2.7007 | -0.07% |
| 2026-09-19 | 2.7025 | -0.00% |
| 2026-09-18 | 2.7025 | -0.08% |
| 2026-09-17 | 2.7048 | -0.07% |
| 2026-09-16 | 2.7066 | -0.02% |
| 2026-09-15 | 2.7072 | -0.00% |
| 2026-09-14 | 2.7073 | +0.26% |
| 2026-09-13 | 2.7001 | -0.09% |
| 2026-09-12 | 2.7025 | -0.16% |
| Date | 1 USD in XCD | Daily change |
|---|---|---|
| 2026-09-11 | 2.7068 | +0.01% |
| 2026-09-10 | 2.7065 | -0.03% |
| 2026-09-09 | 2.7072 | +0.00% |
| 2026-09-08 | 2.7071 | -0.03% |
| 2026-09-07 | 2.7079 | +0.27% |
| 2026-09-06 | 2.7006 | -0.07% |
| 2026-09-05 | 2.7025 | -0.14% |
| 2026-09-04 | 2.7062 | -0.03% |
| 2026-09-03 | 2.7071 | -0.01% |
| 2026-09-02 | 2.7073 | -0.00% |
| 2026-09-01 | 2.7073 | +0.19% |
| 2026-08-31 | 2.7021 | +0.04% |
| 2026-08-30 | 2.7009 | -0.06% |
| 2026-08-29 | 2.7025 | -0.18% |
| 2026-08-28 | 2.7073 | — |
USD to XCD conversion table
1 USD2.7 XCD
5 USD13.5 XCD
10 USD27 XCD
25 USD67.5 XCD
50 USD135 XCD
100 USD270 XCD
500 USD1,350 XCD
1,000 USD2,700 XCD
5,000 USD13,500 XCD
10,000 USD27,000 XCD
Get the USD/XCD rate in your app
One GET request returns the latest USD → 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/USD/XCD"fetch('https://rate-api.com/api/v1/pair/USD/XCD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} XCD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/XCD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} XCD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/XCD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} XCD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "XCD"
},
"rate": 2.7,
"timestamp": 1790429296,
"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 USDEast Caribbean Dollar → US Dollar0.37037Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.