Convert BIF to AUD
Burundian Franc → Australian Dollar
1 BIF = 0.000473004 AUD(1 AUD = 2,114.1473 BIF)
Currency converter
1 BIF =
0.000473 AUD
BIF to AUD: last 30 days
Over the last 30 days, 1 BIF traded between 0.00046279 and 0.000473 AUD, averaging 0.00046717 AUD. The BIF/AUD rate is up 1.49% since 2026-08-28.
- 30-day high
- 0.000473
- 2026-09-25
- 30-day low
- 0.00046279
- 2026-09-09
- 30-day average
- 0.00046717
- Days with data: 30
- 30-day change
- +1.49%
- since 2026-08-28
0.000473
0.000462792026-08-28 → 2026-09-26
| Date | 1 BIF in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.000473 | 0.00% |
| 2026-09-25 | 0.000473 | +0.16% |
| 2026-09-24 | 0.00047227 | +0.35% |
| 2026-09-23 | 0.00047063 | +0.49% |
| 2026-09-22 | 0.00046833 | +0.31% |
| 2026-09-21 | 0.0004669 | -0.35% |
| 2026-09-20 | 0.00046851 | +0.07% |
| 2026-09-19 | 0.00046819 | +0.27% |
| 2026-09-18 | 0.00046691 | -0.24% |
| 2026-09-17 | 0.00046805 | -0.12% |
| 2026-09-16 | 0.00046861 | -0.15% |
| 2026-09-15 | 0.0004693 | +0.06% |
| 2026-09-14 | 0.00046902 | +0.71% |
| 2026-09-13 | 0.00046571 | -1.46% |
| 2026-09-12 | 0.0004726 | +1.43% |
| Date | 1 BIF in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.00046593 | +0.07% |
| 2026-09-10 | 0.0004656 | +0.61% |
| 2026-09-09 | 0.00046279 | -0.12% |
| 2026-09-08 | 0.00046334 | -0.05% |
| 2026-09-07 | 0.0004636 | -0.09% |
| 2026-09-06 | 0.00046402 | -0.03% |
| 2026-09-05 | 0.00046414 | -0.04% |
| 2026-09-04 | 0.00046433 | -0.15% |
| 2026-09-03 | 0.00046504 | -0.47% |
| 2026-09-02 | 0.00046725 | -0.05% |
| 2026-09-01 | 0.00046747 | +0.45% |
| 2026-08-31 | 0.00046539 | +0.20% |
| 2026-08-30 | 0.00046447 | -0.01% |
| 2026-08-29 | 0.00046451 | -0.33% |
| 2026-08-28 | 0.00046606 | — |
BIF to AUD conversion table
1 BIF0.000473 AUD
5 BIF0.002365 AUD
10 BIF0.00473 AUD
25 BIF0.011825 AUD
50 BIF0.02365 AUD
100 BIF0.0473 AUD
500 BIF0.2365 AUD
1,000 BIF0.473 AUD
5,000 BIF2.365 AUD
10,000 BIF4.73 AUD
Get the BIF/AUD rate in your app
One GET request returns the latest BIF → 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/BIF/AUD?precision=6"fetch('https://rate-api.com/api/v1/pair/BIF/AUD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BIF = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BIF/AUD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BIF = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BIF/AUD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BIF = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "BIF",
"to": "AUD"
},
"rate": 0.000473,
"timestamp": 1790432070,
"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 BIFAustralian Dollar → Burundian Franc2,114.1473Convert BIF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.