Convert GBP to CHF
British Pound → Swiss Franc
1 GBP = 1.097681 CHF(1 CHF = 0.911011 GBP)
Currency converter
1 GBP =
1.0977 CHF
GBP to CHF: last 30 days
Over the last 30 days, 1 GBP traded between 1.0912 and 1.1032 CHF, averaging 1.0975 CHF. The GBP/CHF rate is up 0.48% since 2026-08-28.
- 30-day high
- 1.1032
- 2026-09-15
- 30-day low
- 1.0912
- 2026-09-03
- 30-day average
- 1.0975
- Days with data: 30
- 30-day change
- +0.48%
- since 2026-08-28
1.1032
1.09122026-08-28 → 2026-09-26
| Date | 1 GBP in CHF | Daily change |
|---|---|---|
| 2026-09-26 | 1.0977 | 0.00% |
| 2026-09-25 | 1.0977 | +0.31% |
| 2026-09-24 | 1.0942 | +0.16% |
| 2026-09-23 | 1.0925 | -0.23% |
| 2026-09-22 | 1.095 | -0.48% |
| 2026-09-21 | 1.1003 | -0.14% |
| 2026-09-20 | 1.1018 | 0.00% |
| 2026-09-19 | 1.1018 | 0.00% |
| 2026-09-18 | 1.1018 | -0.10% |
| 2026-09-17 | 1.1029 | +0.07% |
| 2026-09-16 | 1.1021 | -0.10% |
| 2026-09-15 | 1.1032 | +0.13% |
| 2026-09-14 | 1.1018 | +0.04% |
| 2026-09-13 | 1.1013 | 0.00% |
| 2026-09-12 | 1.1013 | 0.00% |
| Date | 1 GBP in CHF | Daily change |
|---|---|---|
| 2026-09-11 | 1.1013 | +0.32% |
| 2026-09-10 | 1.0978 | +0.28% |
| 2026-09-09 | 1.0948 | -0.41% |
| 2026-09-08 | 1.0992 | +0.39% |
| 2026-09-07 | 1.095 | +0.01% |
| 2026-09-06 | 1.0949 | 0.00% |
| 2026-09-05 | 1.0949 | 0.00% |
| 2026-09-04 | 1.0949 | +0.34% |
| 2026-09-03 | 1.0912 | -0.57% |
| 2026-09-02 | 1.0975 | +0.07% |
| 2026-09-01 | 1.0967 | +0.19% |
| 2026-08-31 | 1.0947 | +0.21% |
| 2026-08-30 | 1.0924 | 0.00% |
| 2026-08-29 | 1.0924 | 0.00% |
| 2026-08-28 | 1.0924 | — |
GBP to CHF conversion table
1 GBP1.0977 CHF
5 GBP5.4884 CHF
10 GBP10.9768 CHF
25 GBP27.442 CHF
50 GBP54.8841 CHF
100 GBP109.7681 CHF
500 GBP548.8407 CHF
1,000 GBP1,097.6814 CHF
5,000 GBP5,488.4072 CHF
10,000 GBP10,976.814 CHF
Get the GBP/CHF rate in your app
One GET request returns the latest GBP → CHF 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/CHF"fetch('https://rate-api.com/api/v1/pair/GBP/CHF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} CHF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/CHF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} CHF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/CHF');
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']} CHF\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "CHF"
},
"rate": 1.0977,
"timestamp": 1790447443,
"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
CHF to GBPSwiss Franc → British Pound0.91101Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.