Convert GBP to XCD
British Pound → East Caribbean Dollar
1 GBP = 3.578139 XCD(1 XCD = 0.279475 GBP)
Currency converter
1 GBP =
3.5781 XCD
GBP to XCD: last 30 days
Over the last 30 days, 1 GBP traded between 3.5693 and 3.6772 XCD, averaging 3.6388 XCD. The GBP/XCD rate is down 2.70% since 2026-08-28.
- 30-day high
- 3.6772
- 2026-08-28
- 30-day low
- 3.5693
- 2026-09-24
- 30-day average
- 3.6388
- Days with data: 30
- 30-day change
- -2.70%
- since 2026-08-28
3.6772
3.56932026-08-28 → 2026-09-26
| Date | 1 GBP in XCD | Daily change |
|---|---|---|
| 2026-09-26 | 3.5781 | 0.00% |
| 2026-09-25 | 3.5781 | +0.25% |
| 2026-09-24 | 3.5693 | -0.43% |
| 2026-09-23 | 3.5846 | -0.92% |
| 2026-09-22 | 3.618 | -0.23% |
| 2026-09-21 | 3.6262 | +0.62% |
| 2026-09-20 | 3.6038 | -0.07% |
| 2026-09-19 | 3.6062 | -0.00% |
| 2026-09-18 | 3.6063 | -0.33% |
| 2026-09-17 | 3.6181 | -0.66% |
| 2026-09-16 | 3.642 | -0.22% |
| 2026-09-15 | 3.6501 | -0.09% |
| 2026-09-14 | 3.6533 | +0.16% |
| 2026-09-13 | 3.6473 | -0.09% |
| 2026-09-12 | 3.6505 | -0.16% |
| Date | 1 GBP in XCD | Daily change |
|---|---|---|
| 2026-09-11 | 3.6563 | -0.08% |
| 2026-09-10 | 3.6592 | -0.35% |
| 2026-09-09 | 3.6723 | +0.14% |
| 2026-09-08 | 3.667 | +0.08% |
| 2026-09-07 | 3.664 | +0.28% |
| 2026-09-06 | 3.6539 | -0.07% |
| 2026-09-05 | 3.6564 | -0.14% |
| 2026-09-04 | 3.6615 | +0.21% |
| 2026-09-03 | 3.6538 | +0.10% |
| 2026-09-02 | 3.6502 | -0.36% |
| 2026-09-01 | 3.6633 | +0.13% |
| 2026-08-31 | 3.6584 | -0.28% |
| 2026-08-30 | 3.6685 | -0.06% |
| 2026-08-29 | 3.6707 | -0.18% |
| 2026-08-28 | 3.6772 | — |
GBP to XCD conversion table
1 GBP3.5781 XCD
5 GBP17.8907 XCD
10 GBP35.7814 XCD
25 GBP89.4535 XCD
50 GBP178.907 XCD
100 GBP357.8139 XCD
500 GBP1,789.0697 XCD
1,000 GBP3,578.1393 XCD
5,000 GBP17,890.697 XCD
10,000 GBP35,781.393 XCD
Get the GBP/XCD rate in your app
One GET request returns the latest GBP → 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/GBP/XCD"fetch('https://rate-api.com/api/v1/pair/GBP/XCD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} XCD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/XCD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} XCD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/XCD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} XCD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "XCD"
},
"rate": 3.5781,
"timestamp": 1790429373,
"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 GBPEast Caribbean Dollar → British Pound0.27947Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.