Convert GBP to GEL
British Pound → Georgian Lari
1 GBP = 3.446753 GEL(1 GEL = 0.290128 GBP)
Currency converter
1 GBP =
3.4468 GEL
GBP to GEL: last 30 days
Over the last 30 days, 1 GBP traded between 3.4468 and 3.538 GEL, averaging 3.5016 GEL. The GBP/GEL rate is down 2.58% since 2026-08-28.
- 30-day high
- 3.538
- 2026-08-28
- 30-day low
- 3.4468
- 2026-09-25
- 30-day average
- 3.5016
- Days with data: 30
- 30-day change
- -2.58%
- since 2026-08-28
3.538
3.44682026-08-28 → 2026-09-26
| Date | 1 GBP in GEL | Daily change |
|---|---|---|
| 2026-09-26 | 3.4468 | 0.00% |
| 2026-09-25 | 3.4468 | -0.08% |
| 2026-09-24 | 3.4494 | -0.18% |
| 2026-09-23 | 3.4558 | -0.52% |
| 2026-09-22 | 3.4739 | -0.20% |
| 2026-09-21 | 3.481 | +0.35% |
| 2026-09-20 | 3.469 | -0.03% |
| 2026-09-19 | 3.4699 | +0.29% |
| 2026-09-18 | 3.4597 | -0.50% |
| 2026-09-17 | 3.4772 | -0.56% |
| 2026-09-16 | 3.4967 | -0.20% |
| 2026-09-15 | 3.5038 | -0.06% |
| 2026-09-14 | 3.506 | -0.32% |
| 2026-09-13 | 3.5172 | +0.08% |
| 2026-09-12 | 3.5143 | +0.02% |
| Date | 1 GBP in GEL | Daily change |
|---|---|---|
| 2026-09-11 | 3.5136 | -0.13% |
| 2026-09-10 | 3.518 | -0.31% |
| 2026-09-09 | 3.529 | +0.10% |
| 2026-09-08 | 3.5256 | +0.19% |
| 2026-09-07 | 3.5188 | -0.18% |
| 2026-09-06 | 3.5253 | -0.04% |
| 2026-09-05 | 3.5267 | -0.16% |
| 2026-09-04 | 3.5323 | +0.42% |
| 2026-09-03 | 3.5176 | -0.03% |
| 2026-09-02 | 3.5187 | -0.24% |
| 2026-09-01 | 3.5271 | +0.15% |
| 2026-08-31 | 3.5218 | -0.37% |
| 2026-08-30 | 3.5347 | +0.00% |
| 2026-08-29 | 3.5347 | -0.09% |
| 2026-08-28 | 3.538 | — |
GBP to GEL conversion table
1 GBP3.4468 GEL
5 GBP17.2338 GEL
10 GBP34.4675 GEL
25 GBP86.1688 GEL
50 GBP172.3377 GEL
100 GBP344.6753 GEL
500 GBP1,723.3765 GEL
1,000 GBP3,446.753 GEL
5,000 GBP17,233.765 GEL
10,000 GBP34,467.53 GEL
Get the GBP/GEL rate in your app
One GET request returns the latest GBP → GEL 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/GEL"fetch('https://rate-api.com/api/v1/pair/GBP/GEL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} GEL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/GEL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} GEL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/GEL');
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']} GEL\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "GEL"
},
"rate": 3.4468,
"timestamp": 1790429433,
"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
GEL to GBPGeorgian Lari → British Pound0.29013Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.