Convert GBP to BGN
British Pound → Bulgarian Lev
1 GBP = 2.273032 BGN(1 BGN = 0.439941 GBP)
Currency converter
1 GBP =
2.273 BGN
GBP to BGN: last 30 days
Over the last 30 days, 1 GBP traded between 2.2464 and 2.2936 BGN, averaging 2.278 BGN. The GBP/BGN rate is down 0.35% since 2026-08-28.
- 30-day high
- 2.2936
- 2026-08-29
- 30-day low
- 2.2464
- 2026-09-18
- 30-day average
- 2.278
- Days with data: 30
- 30-day change
- -0.35%
- since 2026-08-28
2.2936
2.24642026-08-28 → 2026-09-26
| Date | 1 GBP in BGN | Daily change |
|---|---|---|
| 2026-09-26 | 2.273 | 0.00% |
| 2026-09-25 | 2.273 | -0.07% |
| 2026-09-24 | 2.2746 | -0.04% |
| 2026-09-23 | 2.2755 | -0.10% |
| 2026-09-22 | 2.2777 | -0.21% |
| 2026-09-21 | 2.2826 | +0.46% |
| 2026-09-20 | 2.2722 | -0.00% |
| 2026-09-19 | 2.2723 | +1.15% |
| 2026-09-18 | 2.2464 | -1.57% |
| 2026-09-17 | 2.2823 | +0.10% |
| 2026-09-16 | 2.28 | -0.26% |
| 2026-09-15 | 2.286 | +0.19% |
| 2026-09-14 | 2.2816 | +0.17% |
| 2026-09-13 | 2.2778 | -0.00% |
| 2026-09-12 | 2.2779 | +0.03% |
| Date | 1 GBP in BGN | Daily change |
|---|---|---|
| 2026-09-11 | 2.2773 | +0.22% |
| 2026-09-10 | 2.2722 | -0.39% |
| 2026-09-09 | 2.281 | +0.09% |
| 2026-09-08 | 2.279 | -0.01% |
| 2026-09-07 | 2.2793 | +0.06% |
| 2026-09-06 | 2.2779 | -0.03% |
| 2026-09-05 | 2.2785 | +0.08% |
| 2026-09-04 | 2.2766 | +0.02% |
| 2026-09-03 | 2.2762 | -0.06% |
| 2026-09-02 | 2.2775 | -0.14% |
| 2026-09-01 | 2.2808 | -0.17% |
| 2026-08-31 | 2.2845 | -0.37% |
| 2026-08-30 | 2.293 | -0.03% |
| 2026-08-29 | 2.2936 | +0.55% |
| 2026-08-28 | 2.2811 | — |
GBP to BGN conversion table
1 GBP2.273 BGN
5 GBP11.3652 BGN
10 GBP22.7303 BGN
25 GBP56.8258 BGN
50 GBP113.6516 BGN
100 GBP227.3032 BGN
500 GBP1,136.5158 BGN
1,000 GBP2,273.0316 BGN
5,000 GBP11,365.158 BGN
10,000 GBP22,730.316 BGN
Get the GBP/BGN rate in your app
One GET request returns the latest GBP → BGN 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/BGN"fetch('https://rate-api.com/api/v1/pair/GBP/BGN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} BGN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/BGN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} BGN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/BGN');
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']} BGN\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "BGN"
},
"rate": 2.273,
"timestamp": 1790429387,
"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
BGN to GBPBulgarian Lev → British Pound0.43994Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.