Burundian Franc (BIF) FBu
Burundian Franc exchange rates against major world currencies, checked hourly and updated as sources publish.
1 BIF = 0.000332532 USD
1 BIF in other currencies
BIF to USDUS Dollar0.00033253BIF to EUREuro0.00029162BIF to GBPBritish Pound0.00025092BIF to JPYJapanese Yen0.052404BIF to CNYChinese Yuan0.0022324BIF to CADCanadian Dollar0.00047029BIF to AUDAustralian Dollar0.000473BIF to CHFSwiss Franc0.00027543BIF to INRIndian Rupee0.031862BIF to RUBRussian Ruble0.02827
Convert to BIF
USD to BIFUS Dollar3,007.2323EUR to BIFEuro3,429.1469GBP to BIFBritish Pound3,985.2948JPY to BIFJapanese Yen19.0826CNY to BIFChinese Yuan447.9559CAD to BIFCanadian Dollar2,126.339AUD to BIFAustralian Dollar2,114.1473CHF to BIFSwiss Franc3,630.6479INR to BIFIndian Rupee31.3851RUB to BIFRussian Ruble35.3738
Get BIF rates in your app
One GET request returns every rate against BIF as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=BIF"fetch('https://rate-api.com/api/v1/latest?base=BIF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BIF = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=BIF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BIF = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=BIF');
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['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.