Convert CUP to GBP
Cuban Peso → British Pound
1 CUP = 0.0314398 GBP(1 GBP = 31.806796 CUP)
Currency converter
1 CUP =
0.03144 GBP
CUP to GBP: last 30 days
Over the last 30 days, 1 CUP traded between 0.027773 and 0.03144 GBP, averaging 0.02824 GBP. The CUP/GBP rate is up 13.12% since 2026-08-28.
- 30-day high
- 0.03144
- 2026-09-25
- 30-day low
- 0.027773
- 2026-08-29
- 30-day average
- 0.02824
- Days with data: 30
- 30-day change
- +13.12%
- since 2026-08-28
0.03144
0.0277732026-08-28 → 2026-09-26
| Date | 1 CUP in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.03144 | 0.00% |
| 2026-09-25 | 0.03144 | +10.19% |
| 2026-09-24 | 0.028532 | +0.44% |
| 2026-09-23 | 0.028407 | +0.61% |
| 2026-09-22 | 0.028236 | +0.22% |
| 2026-09-21 | 0.028174 | -0.37% |
| 2026-09-20 | 0.028279 | +0.00% |
| 2026-09-19 | 0.028277 | -0.01% |
| 2026-09-18 | 0.028279 | +0.21% |
| 2026-09-17 | 0.028218 | +0.62% |
| 2026-09-16 | 0.028045 | +0.22% |
| 2026-09-15 | 0.027984 | +0.09% |
| 2026-09-14 | 0.027958 | +0.12% |
| 2026-09-13 | 0.027924 | +0.00% |
| 2026-09-12 | 0.027923 | -0.03% |
| Date | 1 CUP in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.027933 | +0.07% |
| 2026-09-10 | 0.027912 | +0.34% |
| 2026-09-09 | 0.027819 | -0.14% |
| 2026-09-08 | 0.027859 | -0.12% |
| 2026-09-07 | 0.027892 | +0.03% |
| 2026-09-06 | 0.027884 | +0.03% |
| 2026-09-05 | 0.027876 | -0.04% |
| 2026-09-04 | 0.027888 | -0.26% |
| 2026-09-03 | 0.027959 | -0.07% |
| 2026-09-02 | 0.027979 | +0.35% |
| 2026-09-01 | 0.027883 | +0.05% |
| 2026-08-31 | 0.02787 | +0.32% |
| 2026-08-30 | 0.027781 | +0.03% |
| 2026-08-29 | 0.027773 | -0.07% |
| 2026-08-28 | 0.027792 | — |
CUP to GBP conversion table
1 CUP0.03144 GBP
5 CUP0.1572 GBP
10 CUP0.3144 GBP
25 CUP0.786 GBP
50 CUP1.572 GBP
100 CUP3.144 GBP
500 CUP15.7199 GBP
1,000 CUP31.4398 GBP
5,000 CUP157.1991 GBP
10,000 CUP314.3982 GBP
Get the CUP/GBP rate in your app
One GET request returns the latest CUP → GBP 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/CUP/GBP"fetch('https://rate-api.com/api/v1/pair/CUP/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CUP = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CUP/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CUP = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CUP/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CUP = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "CUP",
"to": "GBP"
},
"rate": 0.0314,
"timestamp": 1790435115,
"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
GBP to CUPBritish Pound → Cuban Peso31.8068Convert CUP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.