Convert USD to XCG
US Dollar → Caribbean Guilder
1 USD = 1.79 XCG(1 XCG = 0.558659 USD)
Currency converter
1 USD =
1.79 XCG
USD to XCG: last 30 days
Over the last 30 days, 1 USD traded between 1.79 and 1.8105 XCG, averaging 1.7993 XCG. The USD/XCG rate is down 0.55% since 2026-08-28.
- 30-day high
- 1.8105
- 2026-08-31
- 30-day low
- 1.79
- 2026-09-23
- 30-day average
- 1.7993
- Days with data: 30
- 30-day change
- -0.55%
- since 2026-08-28
1.8105
1.792026-08-28 → 2026-09-26
| Date | 1 USD in XCG | Daily change |
|---|---|---|
| 2026-09-26 | 1.79 | 0.00% |
| 2026-09-25 | 1.79 | 0.00% |
| 2026-09-24 | 1.79 | 0.00% |
| 2026-09-23 | 1.79 | -0.66% |
| 2026-09-22 | 1.8019 | +0.09% |
| 2026-09-21 | 1.8003 | +0.16% |
| 2026-09-20 | 1.7973 | -0.14% |
| 2026-09-19 | 1.7998 | -0.12% |
| 2026-09-18 | 1.802 | -0.45% |
| 2026-09-17 | 1.8101 | +0.45% |
| 2026-09-16 | 1.8019 | +0.05% |
| 2026-09-15 | 1.8011 | -0.08% |
| 2026-09-14 | 1.8026 | +0.32% |
| 2026-09-13 | 1.7968 | -0.01% |
| 2026-09-12 | 1.797 | -0.38% |
| Date | 1 USD in XCG | Daily change |
|---|---|---|
| 2026-09-11 | 1.8038 | +0.11% |
| 2026-09-10 | 1.8018 | +0.17% |
| 2026-09-09 | 1.7988 | -0.15% |
| 2026-09-08 | 1.8016 | -0.05% |
| 2026-09-07 | 1.8025 | +0.30% |
| 2026-09-06 | 1.797 | -0.04% |
| 2026-09-05 | 1.7978 | -0.02% |
| 2026-09-04 | 1.7981 | -0.04% |
| 2026-09-03 | 1.7989 | -0.23% |
| 2026-09-02 | 1.803 | +0.14% |
| 2026-09-01 | 1.8004 | -0.56% |
| 2026-08-31 | 1.8105 | +0.75% |
| 2026-08-30 | 1.7971 | -0.07% |
| 2026-08-29 | 1.7984 | -0.09% |
| 2026-08-28 | 1.8 | — |
USD to XCG conversion table
1 USD1.79 XCG
5 USD8.95 XCG
10 USD17.9 XCG
25 USD44.75 XCG
50 USD89.5 XCG
100 USD179 XCG
500 USD895 XCG
1,000 USD1,790 XCG
5,000 USD8,950 XCG
10,000 USD17,900 XCG
Get the USD/XCG rate in your app
One GET request returns the latest USD → XCG 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/XCG"fetch('https://rate-api.com/api/v1/pair/USD/XCG', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} XCG`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/XCG",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} XCG")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/XCG');
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']} XCG\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "XCG"
},
"rate": 1.79,
"timestamp": 1790429358,
"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
XCG to USDCaribbean Guilder → US Dollar0.55866Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.