Convert USD to BWP
US Dollar → Botswanan Pula
1 USD = 13.631202 BWP(1 BWP = 0.0733611 USD)
Currency converter
1 USD =
13.6312 BWP
USD to BWP: last 30 days
Over the last 30 days, 1 USD traded between 13.3582 and 14.0247 BWP, averaging 13.5122 BWP. The USD/BWP rate is up 2.04% since 2026-08-28.
- 30-day high
- 14.0247
- 2026-09-12
- 30-day low
- 13.3582
- 2026-08-28
- 30-day average
- 13.5122
- Days with data: 30
- 30-day change
- +2.04%
- since 2026-08-28
14.0247
13.35822026-08-28 → 2026-09-26
| Date | 1 USD in BWP | Daily change |
|---|---|---|
| 2026-09-26 | 13.6312 | 0.00% |
| 2026-09-25 | 13.6312 | +0.16% |
| 2026-09-24 | 13.6091 | +0.71% |
| 2026-09-23 | 13.5129 | -0.31% |
| 2026-09-22 | 13.555 | +0.05% |
| 2026-09-21 | 13.5479 | -0.09% |
| 2026-09-20 | 13.5596 | +0.01% |
| 2026-09-19 | 13.5587 | -0.00% |
| 2026-09-18 | 13.5592 | +0.10% |
| 2026-09-17 | 13.5457 | +0.10% |
| 2026-09-16 | 13.5322 | +0.36% |
| 2026-09-15 | 13.4836 | +0.09% |
| 2026-09-14 | 13.4714 | -3.94% |
| 2026-09-13 | 14.0246 | -0.00% |
| 2026-09-12 | 14.0247 | +4.27% |
| Date | 1 USD in BWP | Daily change |
|---|---|---|
| 2026-09-11 | 13.4503 | +0.22% |
| 2026-09-10 | 13.421 | +0.43% |
| 2026-09-09 | 13.363 | -0.19% |
| 2026-09-08 | 13.3886 | -0.03% |
| 2026-09-07 | 13.3923 | +0.03% |
| 2026-09-06 | 13.388 | +0.01% |
| 2026-09-05 | 13.3865 | -0.09% |
| 2026-09-04 | 13.3987 | -0.12% |
| 2026-09-03 | 13.4146 | -0.44% |
| 2026-09-02 | 13.4741 | +0.19% |
| 2026-09-01 | 13.4491 | +0.14% |
| 2026-08-31 | 13.4301 | +0.21% |
| 2026-08-30 | 13.4022 | +0.01% |
| 2026-08-29 | 13.4008 | +0.32% |
| 2026-08-28 | 13.3582 | — |
USD to BWP conversion table
1 USD13.6312 BWP
5 USD68.156 BWP
10 USD136.312 BWP
25 USD340.7801 BWP
50 USD681.5601 BWP
100 USD1,363.1202 BWP
500 USD6,815.6011 BWP
1,000 USD13,631.202 BWP
5,000 USD68,156.011 BWP
10,000 USD136,312.02 BWP
Get the USD/BWP rate in your app
One GET request returns the latest USD → BWP 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/BWP"fetch('https://rate-api.com/api/v1/pair/USD/BWP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} BWP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/BWP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} BWP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/BWP');
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']} BWP\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "BWP"
},
"rate": 13.6312,
"timestamp": 1790437511,
"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
BWP to USDBotswanan Pula → US Dollar0.073361Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.