Convert EUR to BOB
Euro → Bolivian Boliviano
1 EUR = 13.933976 BOB(1 BOB = 0.071767 EUR)
Currency converter
1 EUR =
13.934 BOB
EUR to BOB: last 30 days
Over the last 30 days, 1 EUR traded between 11.4765 and 14.6577 BOB, averaging 13.6464 BOB. The EUR/BOB rate is up 2.07% since 2026-08-29.
- 30-day high
- 14.6577
- 2026-09-11
- 30-day low
- 11.4765
- 2026-09-19
- 30-day average
- 13.6464
- Days with data: 30
- 30-day change
- +2.07%
- since 2026-08-29
14.6577
11.47652026-08-29 → 2026-09-27
| Date | 1 EUR in BOB | Daily change |
|---|---|---|
| 2026-09-27 | 13.934 | 0.00% |
| 2026-09-26 | 13.934 | -0.21% |
| 2026-09-25 | 13.9628 | +6.55% |
| 2026-09-24 | 13.1046 | -3.87% |
| 2026-09-23 | 13.6328 | +6.76% |
| 2026-09-22 | 12.7693 | +7.58% |
| 2026-09-21 | 11.8695 | -0.16% |
| 2026-09-20 | 11.8884 | +3.59% |
| 2026-09-19 | 11.4765 | -1.56% |
| 2026-09-18 | 11.6587 | -12.75% |
| 2026-09-17 | 13.3621 | -2.64% |
| 2026-09-16 | 13.7247 | -0.87% |
| 2026-09-15 | 13.8452 | -3.65% |
| 2026-09-14 | 14.3699 | +4.48% |
| 2026-09-13 | 13.7535 | -1.54% |
| Date | 1 EUR in BOB | Daily change |
|---|---|---|
| 2026-09-12 | 13.9681 | -4.71% |
| 2026-09-11 | 14.6577 | +0.85% |
| 2026-09-10 | 14.5348 | +0.31% |
| 2026-09-09 | 14.49 | +0.57% |
| 2026-09-08 | 14.4083 | +0.19% |
| 2026-09-07 | 14.3806 | -0.72% |
| 2026-09-06 | 14.4845 | +0.73% |
| 2026-09-05 | 14.3791 | +1.95% |
| 2026-09-04 | 14.1041 | -0.05% |
| 2026-09-03 | 14.1109 | +2.14% |
| 2026-09-02 | 13.8154 | +0.65% |
| 2026-09-01 | 13.7264 | +0.44% |
| 2026-08-31 | 13.6666 | -0.44% |
| 2026-08-30 | 13.7271 | +0.55% |
| 2026-08-29 | 13.6517 | — |
EUR to BOB conversion table
1 EUR13.934 BOB
5 EUR69.6699 BOB
10 EUR139.3398 BOB
25 EUR348.3494 BOB
50 EUR696.6988 BOB
100 EUR1,393.3976 BOB
500 EUR6,966.9881 BOB
1,000 EUR13,933.976 BOB
5,000 EUR69,669.881 BOB
10,000 EUR139,339.76 BOB
Get the EUR/BOB rate in your app
One GET request returns the latest EUR → BOB 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/BOB"fetch('https://rate-api.com/api/v1/pair/EUR/BOB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} BOB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/BOB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} BOB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/BOB');
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']} BOB\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "BOB"
},
"rate": 13.934,
"timestamp": 1790470790,
"date": "2026-09-27"
}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
BOB to EURBolivian Boliviano → Euro0.071767Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.