Convert USD to BOB
US Dollar → Bolivian Boliviano
1 USD = 12.244863 BOB(1 BOB = 0.0816669 USD)
Currency converter
1 USD =
12.2449 BOB
USD to BOB: last 30 days
Over the last 30 days, 1 USD traded between 10.0144 and 12.6446 BOB, averaging 11.8005 BOB. The USD/BOB rate is up 5.92% since 2026-08-28.
- 30-day high
- 12.6446
- 2026-09-11
- 30-day low
- 10.0144
- 2026-09-19
- 30-day average
- 11.8005
- Days with data: 30
- 30-day change
- +5.92%
- since 2026-08-28
12.6446
10.01442026-08-28 → 2026-09-26
| Date | 1 USD in BOB | Daily change |
|---|---|---|
| 2026-09-26 | 12.2449 | 0.00% |
| 2026-09-25 | 12.2449 | +6.21% |
| 2026-09-24 | 11.5286 | -3.50% |
| 2026-09-23 | 11.9471 | +7.25% |
| 2026-09-22 | 11.1396 | +7.83% |
| 2026-09-21 | 10.3303 | -0.42% |
| 2026-09-20 | 10.3738 | +3.59% |
| 2026-09-19 | 10.0144 | -1.56% |
| 2026-09-18 | 10.1734 | -12.59% |
| 2026-09-17 | 11.6384 | -2.17% |
| 2026-09-16 | 11.8963 | -0.85% |
| 2026-09-15 | 11.9987 | -3.55% |
| 2026-09-14 | 12.4404 | +4.85% |
| 2026-09-13 | 11.8646 | -1.54% |
| 2026-09-12 | 12.0497 | -4.71% |
| Date | 1 USD in BOB | Daily change |
|---|---|---|
| 2026-09-11 | 12.6446 | +1.05% |
| 2026-09-10 | 12.5127 | +0.62% |
| 2026-09-09 | 12.4356 | +0.24% |
| 2026-09-08 | 12.4059 | +0.26% |
| 2026-09-07 | 12.3736 | -0.72% |
| 2026-09-06 | 12.4631 | +0.73% |
| 2026-09-05 | 12.3724 | +1.95% |
| 2026-09-04 | 12.1357 | -0.11% |
| 2026-09-03 | 12.1489 | +1.81% |
| 2026-09-02 | 11.9325 | +0.75% |
| 2026-09-01 | 11.8433 | +0.49% |
| 2026-08-31 | 11.7857 | -0.04% |
| 2026-08-30 | 11.7901 | +0.55% |
| 2026-08-29 | 11.7253 | +1.43% |
| 2026-08-28 | 11.5605 | — |
USD to BOB conversion table
1 USD12.2449 BOB
5 USD61.2243 BOB
10 USD122.4486 BOB
25 USD306.1216 BOB
50 USD612.2431 BOB
100 USD1,224.4863 BOB
500 USD6,122.4314 BOB
1,000 USD12,244.863 BOB
5,000 USD61,224.314 BOB
10,000 USD122,448.63 BOB
Get the USD/BOB rate in your app
One GET request returns the latest USD → 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/USD/BOB"fetch('https://rate-api.com/api/v1/pair/USD/BOB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} BOB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/BOB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} BOB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/BOB');
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']} BOB\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "BOB"
},
"rate": 12.2449,
"timestamp": 1790429307,
"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
BOB to USDBolivian Boliviano → US Dollar0.081667Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.