Convert BGN to EUR
Bulgarian Lev → Euro
1 BGN = 0.511292 EUR(1 EUR = 1.95583 BGN)
Currency converter
1 BGN =
0.51129 EUR
BGN to EUR: last 30 days
Over the last 30 days, 1 BGN traded between 0.50862 and 0.51834 EUR, averaging 0.51144 EUR. The BGN/EUR rate is down 0.03% since 2026-08-28.
- 30-day high
- 0.51834
- 2026-09-18
- 30-day low
- 0.50862
- 2026-08-29
- 30-day average
- 0.51144
- Days with data: 30
- 30-day change
- -0.03%
- since 2026-08-28
0.51834
0.508622026-08-28 → 2026-09-26
| Date | 1 BGN in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.51129 | 0.00% |
| 2026-09-25 | 0.51129 | 0.00% |
| 2026-09-24 | 0.51129 | 0.00% |
| 2026-09-23 | 0.51129 | -0.10% |
| 2026-09-22 | 0.51181 | +0.21% |
| 2026-09-21 | 0.51073 | -0.34% |
| 2026-09-20 | 0.51246 | +0.00% |
| 2026-09-19 | 0.51244 | -1.14% |
| 2026-09-18 | 0.51834 | +1.54% |
| 2026-09-17 | 0.51049 | -0.20% |
| 2026-09-16 | 0.51154 | +0.08% |
| 2026-09-15 | 0.51115 | -0.17% |
| 2026-09-14 | 0.51203 | +0.09% |
| 2026-09-13 | 0.51158 | +0.00% |
| 2026-09-12 | 0.51157 | -0.03% |
| Date | 1 BGN in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.51171 | -0.11% |
| 2026-09-10 | 0.51226 | +0.37% |
| 2026-09-09 | 0.51038 | -0.27% |
| 2026-09-08 | 0.51177 | +0.19% |
| 2026-09-07 | 0.51078 | -0.06% |
| 2026-09-06 | 0.51107 | +0.03% |
| 2026-09-05 | 0.51093 | -0.08% |
| 2026-09-04 | 0.51136 | +0.16% |
| 2026-09-03 | 0.51053 | -0.16% |
| 2026-09-02 | 0.51134 | -0.11% |
| 2026-09-01 | 0.51188 | +0.16% |
| 2026-08-31 | 0.51108 | +0.46% |
| 2026-08-30 | 0.50876 | +0.03% |
| 2026-08-29 | 0.50862 | -0.55% |
| 2026-08-28 | 0.51143 | — |
BGN to EUR conversion table
1 BGN0.51129 EUR
5 BGN2.5565 EUR
10 BGN5.1129 EUR
25 BGN12.7823 EUR
50 BGN25.5646 EUR
100 BGN51.1292 EUR
500 BGN255.6459 EUR
1,000 BGN511.2919 EUR
5,000 BGN2,556.4594 EUR
10,000 BGN5,112.9188 EUR
Get the BGN/EUR rate in your app
One GET request returns the latest BGN → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/BGN/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BGN = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BGN/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BGN = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BGN/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "BGN",
"to": "EUR"
},
"rate": 0.5113,
"timestamp": 1790435097,
"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
EUR to BGNEuro → Bulgarian Lev1.9558Convert BGN to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.