Convert EUR to BAM
Euro → Bosnia-Herzegovina Convertible Mark
1 EUR = 1.95583 BAM(1 BAM = 0.511292 EUR)
Currency converter
1 EUR =
1.9558 BAM
EUR to BAM: last 30 days
Over the last 30 days, 1 EUR traded between 1.9514 and 1.9661 BAM, averaging 1.9561 BAM. The EUR/BAM rate is up 0.03% since 2026-08-28.
- 30-day high
- 1.9661
- 2026-08-29
- 30-day low
- 1.9514
- 2026-09-20
- 30-day average
- 1.9561
- Days with data: 30
- 30-day change
- +0.03%
- since 2026-08-28
1.9661
1.95142026-08-28 → 2026-09-26
| Date | 1 EUR in BAM | Daily change |
|---|---|---|
| 2026-09-26 | 1.9558 | 0.00% |
| 2026-09-25 | 1.9558 | 0.00% |
| 2026-09-24 | 1.9558 | 0.00% |
| 2026-09-23 | 1.9558 | +0.10% |
| 2026-09-22 | 1.9539 | -0.21% |
| 2026-09-21 | 1.958 | +0.34% |
| 2026-09-20 | 1.9514 | -0.00% |
| 2026-09-19 | 1.9515 | -0.05% |
| 2026-09-18 | 1.9524 | -0.33% |
| 2026-09-17 | 1.9589 | +0.20% |
| 2026-09-16 | 1.9549 | -0.08% |
| 2026-09-15 | 1.9564 | +0.17% |
| 2026-09-14 | 1.953 | -0.09% |
| 2026-09-13 | 1.9547 | -0.00% |
| 2026-09-12 | 1.9548 | +0.03% |
| Date | 1 EUR in BAM | Daily change |
|---|---|---|
| 2026-09-11 | 1.9542 | +0.11% |
| 2026-09-10 | 1.9521 | -0.37% |
| 2026-09-09 | 1.9593 | +0.27% |
| 2026-09-08 | 1.954 | -0.19% |
| 2026-09-07 | 1.9578 | +0.06% |
| 2026-09-06 | 1.9567 | -0.03% |
| 2026-09-05 | 1.9572 | +0.08% |
| 2026-09-04 | 1.9556 | -0.16% |
| 2026-09-03 | 1.9588 | +0.16% |
| 2026-09-02 | 1.9557 | +0.11% |
| 2026-09-01 | 1.9536 | -0.16% |
| 2026-08-31 | 1.9567 | -0.45% |
| 2026-08-30 | 1.9656 | -0.03% |
| 2026-08-29 | 1.9661 | +0.55% |
| 2026-08-28 | 1.9553 | — |
EUR to BAM conversion table
1 EUR1.9558 BAM
5 EUR9.7792 BAM
10 EUR19.5583 BAM
25 EUR48.8958 BAM
50 EUR97.7915 BAM
100 EUR195.583 BAM
500 EUR977.915 BAM
1,000 EUR1,955.83 BAM
5,000 EUR9,779.15 BAM
10,000 EUR19,558.3 BAM
Get the EUR/BAM rate in your app
One GET request returns the latest EUR → BAM 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/BAM"fetch('https://rate-api.com/api/v1/pair/EUR/BAM', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} BAM`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/BAM",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} BAM")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/BAM');
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']} BAM\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "BAM"
},
"rate": 1.9558,
"timestamp": 1790429383,
"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
BAM to EURBosnia-Herzegovina Convertible Mark → Euro0.51129Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.