Convert GBP to CZK
British Pound → Czech Koruna
1 GBP = 28.293335 CZK(1 CZK = 0.035344 GBP)
Currency converter
1 GBP =
28.2933 CZK
GBP to CZK: last 30 days
Over the last 30 days, 1 GBP traded between 28.1455 and 28.3889 CZK, averaging 28.2633 CZK. The GBP/CZK rate is up 0.44% since 2026-08-28.
- 30-day high
- 28.3889
- 2026-09-21
- 30-day low
- 28.1455
- 2026-09-03
- 30-day average
- 28.2633
- Days with data: 30
- 30-day change
- +0.44%
- since 2026-08-28
28.3889
28.14552026-08-28 → 2026-09-26
| Date | 1 GBP in CZK | Daily change |
|---|---|---|
| 2026-09-26 | 28.2933 | 0.00% |
| 2026-09-25 | 28.2933 | -0.29% |
| 2026-09-24 | 28.3756 | +0.02% |
| 2026-09-23 | 28.3688 | -0.04% |
| 2026-09-22 | 28.3796 | -0.03% |
| 2026-09-21 | 28.3889 | +0.17% |
| 2026-09-20 | 28.3404 | 0.00% |
| 2026-09-19 | 28.3404 | 0.00% |
| 2026-09-18 | 28.3404 | +0.07% |
| 2026-09-17 | 28.3207 | -0.13% |
| 2026-09-16 | 28.3569 | -0.10% |
| 2026-09-15 | 28.385 | +0.01% |
| 2026-09-14 | 28.3817 | +0.38% |
| 2026-09-13 | 28.275 | 0.00% |
| 2026-09-12 | 28.275 | 0.00% |
| Date | 1 GBP in CZK | Daily change |
|---|---|---|
| 2026-09-11 | 28.275 | +0.17% |
| 2026-09-10 | 28.2263 | -0.00% |
| 2026-09-09 | 28.2271 | +0.07% |
| 2026-09-08 | 28.2086 | +0.13% |
| 2026-09-07 | 28.1709 | +0.04% |
| 2026-09-06 | 28.1599 | 0.00% |
| 2026-09-05 | 28.1599 | 0.00% |
| 2026-09-04 | 28.1599 | +0.05% |
| 2026-09-03 | 28.1455 | -0.09% |
| 2026-09-02 | 28.1716 | -0.12% |
| 2026-09-01 | 28.2055 | +0.15% |
| 2026-08-31 | 28.1641 | -0.02% |
| 2026-08-30 | 28.1702 | 0.00% |
| 2026-08-29 | 28.1702 | 0.00% |
| 2026-08-28 | 28.1702 | — |
GBP to CZK conversion table
1 GBP28.2933 CZK
5 GBP141.4667 CZK
10 GBP282.9334 CZK
25 GBP707.3334 CZK
50 GBP1,414.6667 CZK
100 GBP2,829.3335 CZK
500 GBP14,146.667 CZK
1,000 GBP28,293.335 CZK
5,000 GBP141,466.67 CZK
10,000 GBP282,933.35 CZK
Get the GBP/CZK rate in your app
One GET request returns the latest GBP → CZK 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/CZK"fetch('https://rate-api.com/api/v1/pair/GBP/CZK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} CZK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/CZK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} CZK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/CZK');
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']} CZK\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "CZK"
},
"rate": 28.2933,
"timestamp": 1790429447,
"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
CZK to GBPCzech Koruna → British Pound0.035344Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.