Convert USD to BIF
US Dollar → Burundian Franc
1 USD = 3,007.2323 BIF(1 BIF = 0.000332532 USD)
Currency converter
1 USD =
3,007.2323 BIF
USD to BIF: last 30 days
Over the last 30 days, 1 USD traded between 2,950.0904 and 3,013.4357 BIF, averaging 2,994.5442 BIF. The USD/BIF rate is up 0.84% since 2026-08-28.
- 30-day high
- 3,013.4357
- 2026-09-24
- 30-day low
- 2,950.0904
- 2026-09-12
- 30-day average
- 2,994.5442
- Days with data: 30
- 30-day change
- +0.84%
- since 2026-08-28
3,013.4357
2,950.09042026-08-28 → 2026-09-26
| Date | 1 USD in BIF | Daily change |
|---|---|---|
| 2026-09-26 | 3,007.2323 | 0.00% |
| 2026-09-25 | 3,007.2323 | -0.21% |
| 2026-09-24 | 3,013.4357 | +0.23% |
| 2026-09-23 | 3,006.4962 | +0.12% |
| 2026-09-22 | 3,003.0361 | +0.08% |
| 2026-09-21 | 3,000.667 | +0.10% |
| 2026-09-20 | 2,997.779 | -0.07% |
| 2026-09-19 | 2,999.8677 | -0.27% |
| 2026-09-18 | 3,008.1 | +0.16% |
| 2026-09-17 | 3,003.2953 | +0.38% |
| 2026-09-16 | 2,992.0172 | +0.05% |
| 2026-09-15 | 2,990.4132 | -0.00% |
| 2026-09-14 | 2,990.481 | -0.11% |
| 2026-09-13 | 2,993.7134 | +1.48% |
| 2026-09-12 | 2,950.0904 | -1.41% |
| Date | 1 USD in BIF | Daily change |
|---|---|---|
| 2026-09-11 | 2,992.3097 | +0.10% |
| 2026-09-10 | 2,989.2618 | -0.05% |
| 2026-09-09 | 2,990.7484 | -0.03% |
| 2026-09-08 | 2,991.5195 | +0.05% |
| 2026-09-07 | 2,989.8934 | -0.06% |
| 2026-09-06 | 2,991.7019 | +0.03% |
| 2026-09-05 | 2,990.9377 | +0.04% |
| 2026-09-04 | 2,989.7078 | +0.01% |
| 2026-09-03 | 2,989.4204 | -0.16% |
| 2026-09-02 | 2,994.3519 | -0.04% |
| 2026-09-01 | 2,995.4655 | -0.16% |
| 2026-08-31 | 3,000.2725 | +0.26% |
| 2026-08-30 | 2,992.4413 | +0.01% |
| 2026-08-29 | 2,992.1818 | +0.33% |
| 2026-08-28 | 2,982.2555 | — |
USD to BIF conversion table
1 USD3,007.2323 BIF
5 USD15,036.161 BIF
10 USD30,072.323 BIF
25 USD75,180.807 BIF
50 USD150,361.61 BIF
100 USD300,723.23 BIF
500 USD1,503,616.1 BIF
1,000 USD3,007,232.3 BIF
5,000 USD15,036,161 BIF
10,000 USD30,072,323 BIF
Get the USD/BIF rate in your app
One GET request returns the latest USD → BIF 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/USD/BIF"fetch('https://rate-api.com/api/v1/pair/USD/BIF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} BIF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/BIF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} BIF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/BIF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} BIF\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "BIF"
},
"rate": 3007.2323,
"timestamp": 1790429311,
"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
BIF to USDBurundian Franc → US Dollar0.00033253Convert USD to other currencies
Convert other currencies to BIF
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.