Convert GBP to CRC
British Pound → Costa Rican Colón
1 GBP = 600.89655 CRC(1 CRC = 0.00166418 GBP)
Currency converter
1 GBP =
600.8966 CRC
GBP to CRC: last 30 days
Over the last 30 days, 1 GBP traded between 595.5059 and 615.8763 CRC, averaging 606.9772 CRC. The GBP/CRC rate is down 2.43% since 2026-08-28.
- 30-day high
- 615.8763
- 2026-08-28
- 30-day low
- 595.5059
- 2026-09-20
- 30-day average
- 606.9772
- Days with data: 30
- 30-day change
- -2.43%
- since 2026-08-28
615.8763
595.50592026-08-28 → 2026-09-26
| Date | 1 GBP in CRC | Daily change |
|---|---|---|
| 2026-09-26 | 600.8966 | 0.00% |
| 2026-09-25 | 600.8966 | +0.39% |
| 2026-09-24 | 598.5408 | -0.21% |
| 2026-09-23 | 599.7866 | +0.34% |
| 2026-09-22 | 597.7294 | -0.19% |
| 2026-09-21 | 598.8735 | +0.57% |
| 2026-09-20 | 595.5059 | -0.22% |
| 2026-09-19 | 596.8271 | -0.01% |
| 2026-09-18 | 596.8848 | -0.75% |
| 2026-09-17 | 601.4053 | -0.21% |
| 2026-09-16 | 602.7004 | -0.64% |
| 2026-09-15 | 606.5793 | -0.29% |
| 2026-09-14 | 608.3463 | +0.52% |
| 2026-09-13 | 605.1786 | -0.32% |
| 2026-09-12 | 607.1214 | -0.76% |
| Date | 1 GBP in CRC | Daily change |
|---|---|---|
| 2026-09-11 | 611.7702 | -0.34% |
| 2026-09-10 | 613.8624 | -0.21% |
| 2026-09-09 | 615.1272 | +0.07% |
| 2026-09-08 | 614.715 | +0.12% |
| 2026-09-07 | 613.991 | +0.61% |
| 2026-09-06 | 610.26 | -0.07% |
| 2026-09-05 | 610.7053 | -0.37% |
| 2026-09-04 | 612.9593 | +0.23% |
| 2026-09-03 | 611.5224 | -0.05% |
| 2026-09-02 | 611.8447 | +0.05% |
| 2026-09-01 | 611.5455 | -0.18% |
| 2026-08-31 | 612.6524 | +0.30% |
| 2026-08-30 | 610.8258 | -0.58% |
| 2026-08-29 | 614.3857 | -0.24% |
| 2026-08-28 | 615.8763 | — |
GBP to CRC conversion table
1 GBP600.8966 CRC
5 GBP3,004.4827 CRC
10 GBP6,008.9655 CRC
25 GBP15,022.414 CRC
50 GBP30,044.827 CRC
100 GBP60,089.655 CRC
500 GBP300,448.27 CRC
1,000 GBP600,896.55 CRC
5,000 GBP3,004,482.7 CRC
10,000 GBP6,008,965.5 CRC
Get the GBP/CRC rate in your app
One GET request returns the latest GBP → CRC 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/CRC"fetch('https://rate-api.com/api/v1/pair/GBP/CRC', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} CRC`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/CRC",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} CRC")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/CRC');
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']} CRC\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "CRC"
},
"rate": 600.8965,
"timestamp": 1790429387,
"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
CRC to GBPCosta Rican Colón → British Pound0.0016642Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.