Convert GBP to GGP
British Pound → Guernsey Pound
1 GBP = 1 GGP(1 GGP = 1 GBP)
Currency converter
1 GBP =
1 GGP
GBP to GGP: last 30 days
Over the last 30 days, 1 GBP traded between 0.99618 and 1.0036 GGP, averaging 0.9998 GGP. The GBP/GGP rate is up 0.05% since 2026-08-28.
- 30-day high
- 1.0036
- 2026-08-29
- 30-day low
- 0.99618
- 2026-09-20
- 30-day average
- 0.9998
- Days with data: 30
- 30-day change
- +0.05%
- since 2026-08-28
1.0036
0.996182026-08-28 → 2026-09-26
| Date | 1 GBP in GGP | Daily change |
|---|---|---|
| 2026-09-26 | 1 | 0.00% |
| 2026-09-25 | 1 | 0.00% |
| 2026-09-24 | 1 | 0.00% |
| 2026-09-23 | 1 | +0.14% |
| 2026-09-22 | 0.99856 | -0.23% |
| 2026-09-21 | 1.0009 | +0.47% |
| 2026-09-20 | 0.99618 | -0.01% |
| 2026-09-19 | 0.99631 | -0.36% |
| 2026-09-18 | 0.99988 | -0.00% |
| 2026-09-17 | 0.99991 | +0.18% |
| 2026-09-16 | 0.99815 | -0.18% |
| 2026-09-15 | 0.99991 | +0.07% |
| 2026-09-14 | 0.99923 | +0.07% |
| 2026-09-13 | 0.99853 | +0.00% |
| 2026-09-12 | 0.99852 | -0.21% |
| Date | 1 GBP in GGP | Daily change |
|---|---|---|
| 2026-09-11 | 1.0006 | +0.32% |
| 2026-09-10 | 0.9974 | -0.39% |
| 2026-09-09 | 1.0013 | +0.08% |
| 2026-09-08 | 1.0005 | -0.10% |
| 2026-09-07 | 1.0016 | +0.05% |
| 2026-09-06 | 1.0011 | +0.01% |
| 2026-09-05 | 1.001 | +0.10% |
| 2026-09-04 | 0.99998 | -0.01% |
| 2026-09-03 | 1.0001 | +0.15% |
| 2026-09-02 | 0.99861 | -0.08% |
| 2026-09-01 | 0.99943 | -0.02% |
| 2026-08-31 | 0.9996 | -0.38% |
| 2026-08-30 | 1.0035 | -0.02% |
| 2026-08-29 | 1.0036 | +0.42% |
| 2026-08-28 | 0.99945 | — |
GBP to GGP conversion table
1 GBP1 GGP
5 GBP5 GGP
10 GBP10 GGP
25 GBP25 GGP
50 GBP50 GGP
100 GBP100 GGP
500 GBP500 GGP
1,000 GBP1,000 GGP
5,000 GBP5,000 GGP
10,000 GBP10,000 GGP
Get the GBP/GGP rate in your app
One GET request returns the latest GBP → GGP 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/GGP"fetch('https://rate-api.com/api/v1/pair/GBP/GGP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} GGP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/GGP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} GGP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/GGP');
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']} GGP\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "GGP"
},
"rate": 1,
"timestamp": 1790429441,
"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
GGP to GBPGuernsey Pound → British Pound1Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.