Convert BGN to USD
Bulgarian Lev → US Dollar
1 BGN = 0.583026 USD(1 USD = 1.715189 BGN)
Currency converter
1 BGN =
0.58303 USD
BGN to USD: last 30 days
Over the last 30 days, 1 BGN traded between 0.58119 and 0.59545 USD, averaging 0.59067 USD. The BGN/USD rate is down 2.09% since 2026-08-28.
- 30-day high
- 0.59545
- 2026-08-28
- 30-day low
- 0.58119
- 2026-09-24
- 30-day average
- 0.59067
- Days with data: 30
- 30-day change
- -2.09%
- since 2026-08-28
0.59545
0.581192026-08-28 → 2026-09-26
| Date | 1 BGN in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.58303 | 0.00% |
| 2026-09-25 | 0.58303 | +0.32% |
| 2026-09-24 | 0.58119 | -0.39% |
| 2026-09-23 | 0.58344 | -0.55% |
| 2026-09-22 | 0.58669 | -0.02% |
| 2026-09-21 | 0.58683 | -0.08% |
| 2026-09-20 | 0.58728 | +0.00% |
| 2026-09-19 | 0.58725 | -1.14% |
| 2026-09-18 | 0.59402 | +1.35% |
| 2026-09-17 | 0.5861 | -0.69% |
| 2026-09-16 | 0.59016 | +0.06% |
| 2026-09-15 | 0.58981 | -0.28% |
| 2026-09-14 | 0.59145 | -0.27% |
| 2026-09-13 | 0.59303 | +0.00% |
| 2026-09-12 | 0.59301 | -0.03% |
| Date | 1 BGN in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.59317 | -0.31% |
| 2026-09-10 | 0.59504 | +0.06% |
| 2026-09-09 | 0.59469 | +0.05% |
| 2026-09-08 | 0.59437 | +0.12% |
| 2026-09-07 | 0.59363 | -0.06% |
| 2026-09-06 | 0.59396 | +0.03% |
| 2026-09-05 | 0.5938 | -0.08% |
| 2026-09-04 | 0.5943 | +0.22% |
| 2026-09-03 | 0.59298 | +0.16% |
| 2026-09-02 | 0.59202 | -0.21% |
| 2026-09-01 | 0.59327 | +0.11% |
| 2026-08-31 | 0.59264 | +0.05% |
| 2026-08-30 | 0.59234 | +0.03% |
| 2026-08-29 | 0.59218 | -0.55% |
| 2026-08-28 | 0.59545 | — |
BGN to USD conversion table
1 BGN0.58303 USD
5 BGN2.9151 USD
10 BGN5.8303 USD
25 BGN14.5757 USD
50 BGN29.1513 USD
100 BGN58.3026 USD
500 BGN291.5131 USD
1,000 BGN583.0261 USD
5,000 BGN2,915.1307 USD
10,000 BGN5,830.2613 USD
Get the BGN/USD rate in your app
One GET request returns the latest BGN → USD 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/USD"fetch('https://rate-api.com/api/v1/pair/BGN/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BGN = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BGN/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BGN = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BGN/USD');
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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "BGN",
"to": "USD"
},
"rate": 0.583,
"timestamp": 1790432063,
"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
USD to BGNUS Dollar → Bulgarian Lev1.7152Convert BGN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.