Convert BIF to EUR
Burundian Franc → Euro
1 BIF = 0.000291618 EUR(1 EUR = 3,429.1469 BIF)
Currency converter
1 BIF =
0.00029162 EUR
BIF to EUR: last 30 days
Over the last 30 days, 1 BIF traded between 0.00028696 and 0.00029242 EUR, averaging 0.00028916 EUR. The BIF/EUR rate is up 1.26% since 2026-08-28.
- 30-day high
- 0.00029242
- 2026-09-12
- 30-day low
- 0.00028696
- 2026-09-09
- 30-day average
- 0.00028916
- Days with data: 30
- 30-day change
- +1.26%
- since 2026-08-28
0.00029242
0.000286962026-08-28 → 2026-09-26
| Date | 1 BIF in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.00029162 | 0.00% |
| 2026-09-25 | 0.00029162 | -0.11% |
| 2026-09-24 | 0.00029194 | +0.16% |
| 2026-09-23 | 0.00029148 | +0.34% |
| 2026-09-22 | 0.0002905 | +0.16% |
| 2026-09-21 | 0.00029004 | -0.36% |
| 2026-09-20 | 0.00029108 | +0.07% |
| 2026-09-19 | 0.00029088 | +0.27% |
| 2026-09-18 | 0.00029008 | +0.02% |
| 2026-09-17 | 0.00029001 | +0.11% |
| 2026-09-16 | 0.0002897 | -0.04% |
| 2026-09-15 | 0.0002898 | +0.11% |
| 2026-09-14 | 0.0002895 | +0.46% |
| 2026-09-13 | 0.00028816 | -1.46% |
| 2026-09-12 | 0.00029242 | +1.43% |
| Date | 1 BIF in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.00028829 | +0.10% |
| 2026-09-10 | 0.00028799 | +0.36% |
| 2026-09-09 | 0.00028696 | -0.30% |
| 2026-09-08 | 0.00028782 | +0.01% |
| 2026-09-07 | 0.00028778 | +0.06% |
| 2026-09-06 | 0.00028761 | -0.03% |
| 2026-09-05 | 0.00028768 | -0.04% |
| 2026-09-04 | 0.0002878 | -0.07% |
| 2026-09-03 | 0.000288 | -0.15% |
| 2026-09-02 | 0.00028845 | +0.14% |
| 2026-09-01 | 0.00028804 | +0.21% |
| 2026-08-31 | 0.00028743 | +0.14% |
| 2026-08-30 | 0.00028702 | -0.01% |
| 2026-08-29 | 0.00028704 | -0.33% |
| 2026-08-28 | 0.000288 | — |
BIF to EUR conversion table
1 BIF0.00029162 EUR
5 BIF0.0014581 EUR
10 BIF0.0029162 EUR
25 BIF0.0072904 EUR
50 BIF0.014581 EUR
100 BIF0.029162 EUR
500 BIF0.14581 EUR
1,000 BIF0.29162 EUR
5,000 BIF1.4581 EUR
10,000 BIF2.9162 EUR
Get the BIF/EUR rate in your app
One GET request returns the latest BIF → EUR 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/EUR?precision=6"fetch('https://rate-api.com/api/v1/pair/BIF/EUR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BIF = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BIF/EUR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BIF = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BIF/EUR?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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "BIF",
"to": "EUR"
},
"rate": 0.000292,
"timestamp": 1790435122,
"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
EUR to BIFEuro → Burundian Franc3,429.1469Convert BIF to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.