Convert BOB to USD
Bolivian Boliviano → US Dollar
1 BOB = 0.0816669 USD(1 USD = 12.244863 BOB)
Currency converter
1 BOB =
0.081667 USD
BOB to USD: last 30 days
Over the last 30 days, 1 BOB traded between 0.079085 and 0.099856 USD, averaging 0.085073 USD. The BOB/USD rate is down 5.59% since 2026-08-28.
- 30-day high
- 0.099856
- 2026-09-19
- 30-day low
- 0.079085
- 2026-09-11
- 30-day average
- 0.085073
- Days with data: 30
- 30-day change
- -5.59%
- since 2026-08-28
0.099856
0.0790852026-08-28 → 2026-09-26
| Date | 1 BOB in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.081667 | 0.00% |
| 2026-09-25 | 0.081667 | -5.85% |
| 2026-09-24 | 0.08674 | +3.63% |
| 2026-09-23 | 0.083702 | -6.76% |
| 2026-09-22 | 0.08977 | -7.26% |
| 2026-09-21 | 0.096803 | +0.42% |
| 2026-09-20 | 0.096397 | -3.46% |
| 2026-09-19 | 0.099856 | +1.59% |
| 2026-09-18 | 0.098296 | +14.40% |
| 2026-09-17 | 0.085923 | +2.22% |
| 2026-09-16 | 0.08406 | +0.86% |
| 2026-09-15 | 0.083342 | +3.68% |
| 2026-09-14 | 0.080383 | -4.63% |
| 2026-09-13 | 0.084284 | +1.56% |
| 2026-09-12 | 0.08299 | +4.94% |
| Date | 1 BOB in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.079085 | -1.04% |
| 2026-09-10 | 0.079919 | -0.62% |
| 2026-09-09 | 0.080414 | -0.24% |
| 2026-09-08 | 0.080607 | -0.26% |
| 2026-09-07 | 0.080817 | +0.72% |
| 2026-09-06 | 0.080237 | -0.73% |
| 2026-09-05 | 0.080825 | -1.91% |
| 2026-09-04 | 0.082401 | +0.11% |
| 2026-09-03 | 0.082312 | -1.78% |
| 2026-09-02 | 0.083805 | -0.75% |
| 2026-09-01 | 0.084436 | -0.49% |
| 2026-08-31 | 0.084849 | +0.04% |
| 2026-08-30 | 0.084817 | -0.55% |
| 2026-08-29 | 0.085286 | -1.41% |
| 2026-08-28 | 0.086501 | — |
BOB to USD conversion table
1 BOB0.081667 USD
5 BOB0.40833 USD
10 BOB0.81667 USD
25 BOB2.0417 USD
50 BOB4.0833 USD
100 BOB8.1667 USD
500 BOB40.8335 USD
1,000 BOB81.6669 USD
5,000 BOB408.3345 USD
10,000 BOB816.669 USD
Get the BOB/USD rate in your app
One GET request returns the latest BOB → USD 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/BOB/USD"fetch('https://rate-api.com/api/v1/pair/BOB/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BOB = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BOB/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BOB = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BOB/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BOB = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "BOB",
"to": "USD"
},
"rate": 0.0817,
"timestamp": 1790432068,
"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
USD to BOBUS Dollar → Bolivian Boliviano12.2449Convert BOB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.