Convert BGN to GBP
Bulgarian Lev → British Pound
1 BGN = 0.439941 GBP(1 GBP = 2.273032 BGN)
Currency converter
1 BGN =
0.43994 GBP
BGN to GBP: last 30 days
Over the last 30 days, 1 BGN traded between 0.43599 and 0.44515 GBP, averaging 0.43898 GBP. The BGN/GBP rate is up 0.35% since 2026-08-28.
- 30-day high
- 0.44515
- 2026-09-18
- 30-day low
- 0.43599
- 2026-08-29
- 30-day average
- 0.43898
- Days with data: 30
- 30-day change
- +0.35%
- since 2026-08-28
0.44515
0.435992026-08-28 → 2026-09-26
| Date | 1 BGN in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.43994 | 0.00% |
| 2026-09-25 | 0.43994 | +0.07% |
| 2026-09-24 | 0.43964 | +0.04% |
| 2026-09-23 | 0.43946 | +0.10% |
| 2026-09-22 | 0.43903 | +0.21% |
| 2026-09-21 | 0.43811 | -0.45% |
| 2026-09-20 | 0.4401 | +0.00% |
| 2026-09-19 | 0.44008 | -1.14% |
| 2026-09-18 | 0.44515 | +1.60% |
| 2026-09-17 | 0.43816 | -0.10% |
| 2026-09-16 | 0.43859 | +0.26% |
| 2026-09-15 | 0.43744 | -0.19% |
| 2026-09-14 | 0.43829 | -0.17% |
| 2026-09-13 | 0.43902 | +0.00% |
| 2026-09-12 | 0.43901 | -0.03% |
| Date | 1 BGN in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.43913 | -0.22% |
| 2026-09-10 | 0.44011 | +0.39% |
| 2026-09-09 | 0.43841 | -0.09% |
| 2026-09-08 | 0.43879 | +0.01% |
| 2026-09-07 | 0.43873 | -0.06% |
| 2026-09-06 | 0.439 | +0.03% |
| 2026-09-05 | 0.43888 | -0.08% |
| 2026-09-04 | 0.43925 | -0.02% |
| 2026-09-03 | 0.43934 | +0.06% |
| 2026-09-02 | 0.43909 | +0.15% |
| 2026-09-01 | 0.43845 | +0.17% |
| 2026-08-31 | 0.43773 | +0.37% |
| 2026-08-30 | 0.43611 | +0.03% |
| 2026-08-29 | 0.43599 | -0.55% |
| 2026-08-28 | 0.43839 | — |
BGN to GBP conversion table
1 BGN0.43994 GBP
5 BGN2.1997 GBP
10 BGN4.3994 GBP
25 BGN10.9985 GBP
50 BGN21.9971 GBP
100 BGN43.9941 GBP
500 BGN219.9706 GBP
1,000 BGN439.9411 GBP
5,000 BGN2,199.7055 GBP
10,000 BGN4,399.411 GBP
Get the BGN/GBP rate in your app
One GET request returns the latest BGN → GBP 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/BGN/GBP"fetch('https://rate-api.com/api/v1/pair/BGN/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BGN = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BGN/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BGN = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BGN/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BGN = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "BGN",
"to": "GBP"
},
"rate": 0.4399,
"timestamp": 1790432124,
"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
GBP to BGNBritish Pound → Bulgarian Lev2.273Convert BGN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.