Convert EUR to BIF
Euro → Burundian Franc
1 EUR = 3,429.1469 BIF(1 BIF = 0.000291618 EUR)
Currency converter
1 EUR =
3,429.1469 BIF
EUR to BIF: last 30 days
Over the last 30 days, 1 EUR traded between 3,419.7602 and 3,484.8272 BIF, averaging 3,458.4255 BIF. The EUR/BIF rate is down 1.24% since 2026-08-28.
- 30-day high
- 3,484.8272
- 2026-09-09
- 30-day low
- 3,419.7602
- 2026-09-12
- 30-day average
- 3,458.4255
- Days with data: 30
- 30-day change
- -1.24%
- since 2026-08-28
3,484.8272
3,419.76022026-08-28 → 2026-09-26
| Date | 1 EUR in BIF | Daily change |
|---|---|---|
| 2026-09-26 | 3,429.1469 | 0.00% |
| 2026-09-25 | 3,429.1469 | +0.11% |
| 2026-09-24 | 3,425.3724 | -0.16% |
| 2026-09-23 | 3,430.7129 | -0.34% |
| 2026-09-22 | 3,442.3881 | -0.16% |
| 2026-09-21 | 3,447.7744 | +0.36% |
| 2026-09-20 | 3,435.4561 | -0.07% |
| 2026-09-19 | 3,437.8498 | -0.27% |
| 2026-09-18 | 3,447.284 | -0.02% |
| 2026-09-17 | 3,448.1003 | -0.11% |
| 2026-09-16 | 3,451.8762 | +0.04% |
| 2026-09-15 | 3,450.6228 | -0.11% |
| 2026-09-14 | 3,454.2883 | -0.46% |
| 2026-09-13 | 3,470.3283 | +1.48% |
| 2026-09-12 | 3,419.7602 | -1.41% |
| Date | 1 EUR in BIF | Daily change |
|---|---|---|
| 2026-09-11 | 3,468.7012 | -0.10% |
| 2026-09-10 | 3,472.3327 | -0.36% |
| 2026-09-09 | 3,484.8272 | +0.30% |
| 2026-09-08 | 3,474.3499 | -0.01% |
| 2026-09-07 | 3,474.8424 | -0.06% |
| 2026-09-06 | 3,476.9442 | +0.03% |
| 2026-09-05 | 3,476.0561 | +0.04% |
| 2026-09-04 | 3,474.6268 | +0.07% |
| 2026-09-03 | 3,472.1943 | +0.15% |
| 2026-09-02 | 3,466.8488 | -0.14% |
| 2026-09-01 | 3,471.7556 | -0.21% |
| 2026-08-31 | 3,479.1012 | -0.14% |
| 2026-08-30 | 3,484.0798 | +0.01% |
| 2026-08-29 | 3,483.7777 | +0.33% |
| 2026-08-28 | 3,472.2205 | — |
EUR to BIF conversion table
1 EUR3,429.1469 BIF
5 EUR17,145.735 BIF
10 EUR34,291.469 BIF
25 EUR85,728.674 BIF
50 EUR171,457.35 BIF
100 EUR342,914.69 BIF
500 EUR1,714,573.5 BIF
1,000 EUR3,429,146.9 BIF
5,000 EUR17,145,735 BIF
10,000 EUR34,291,469 BIF
Get the EUR/BIF rate in your app
One GET request returns the latest EUR → 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/EUR/BIF"fetch('https://rate-api.com/api/v1/pair/EUR/BIF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} BIF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/BIF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} BIF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/BIF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} BIF\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "BIF"
},
"rate": 3429.1469,
"timestamp": 1790437584,
"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 EURBurundian Franc → Euro0.00029162Convert EUR to other currencies
Convert other currencies to BIF
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.