Convert BGN to AUD
Bulgarian Lev → Australian Dollar
1 BGN = 0.829315 AUD(1 AUD = 1.205814 BGN)
Currency converter
1 BGN =
0.82932 AUD
BGN to AUD: last 30 days
Over the last 30 days, 1 BGN traded between 0.82215 and 0.8343 AUD, averaging 0.82628 AUD. The BGN/AUD rate is up 0.21% since 2026-08-28.
- 30-day high
- 0.8343
- 2026-09-18
- 30-day low
- 0.82215
- 2026-09-21
- 30-day average
- 0.82628
- Days with data: 30
- 30-day change
- +0.21%
- since 2026-08-28
0.8343
0.822152026-08-28 → 2026-09-26
| Date | 1 BGN in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.82932 | 0.00% |
| 2026-09-25 | 0.82932 | +0.27% |
| 2026-09-24 | 0.82712 | +0.19% |
| 2026-09-23 | 0.82553 | +0.05% |
| 2026-09-22 | 0.82512 | +0.36% |
| 2026-09-21 | 0.82215 | -0.32% |
| 2026-09-20 | 0.82483 | +0.00% |
| 2026-09-19 | 0.8248 | -1.14% |
| 2026-09-18 | 0.8343 | +1.26% |
| 2026-09-17 | 0.82388 | -0.43% |
| 2026-09-16 | 0.82746 | -0.03% |
| 2026-09-15 | 0.82774 | -0.22% |
| 2026-09-14 | 0.82957 | +0.33% |
| 2026-09-13 | 0.8268 | +0.00% |
| 2026-09-12 | 0.82678 | -0.03% |
| Date | 1 BGN in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.827 | -0.14% |
| 2026-09-10 | 0.82818 | +0.62% |
| 2026-09-09 | 0.82311 | -0.09% |
| 2026-09-08 | 0.82385 | +0.12% |
| 2026-09-07 | 0.82283 | -0.21% |
| 2026-09-06 | 0.82454 | +0.03% |
| 2026-09-05 | 0.82432 | -0.08% |
| 2026-09-04 | 0.82501 | +0.08% |
| 2026-09-03 | 0.82436 | -0.48% |
| 2026-09-02 | 0.8283 | -0.30% |
| 2026-09-01 | 0.83076 | +0.39% |
| 2026-08-31 | 0.82751 | +0.51% |
| 2026-08-30 | 0.8233 | +0.03% |
| 2026-08-29 | 0.82307 | -0.55% |
| 2026-08-28 | 0.82761 | — |
BGN to AUD conversion table
1 BGN0.82932 AUD
5 BGN4.1466 AUD
10 BGN8.2932 AUD
25 BGN20.7329 AUD
50 BGN41.4658 AUD
100 BGN82.9315 AUD
500 BGN414.6577 AUD
1,000 BGN829.3154 AUD
5,000 BGN4,146.5772 AUD
10,000 BGN8,293.1543 AUD
Get the BGN/AUD rate in your app
One GET request returns the latest BGN → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/BGN/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BGN = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BGN/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BGN = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BGN/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "BGN",
"to": "AUD"
},
"rate": 0.8293,
"timestamp": 1790435058,
"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
AUD to BGNAustralian Dollar → Bulgarian Lev1.2058Convert BGN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.