Convert USD to BTN
US Dollar → Bhutanese Ngultrum
1 USD = 95.817329 BTN(1 BTN = 0.0104365 USD)
Currency converter
1 USD =
95.8173 BTN
USD to BTN: last 30 days
Over the last 30 days, 1 USD traded between 94.4028 and 96.0003 BTN, averaging 95.3879 BTN. The USD/BTN rate is up 0.42% since 2026-08-28.
- 30-day high
- 96.0003
- 2026-09-19
- 30-day low
- 94.4028
- 2026-09-03
- 30-day average
- 95.3879
- Days with data: 30
- 30-day change
- +0.42%
- since 2026-08-28
96.0003
94.40282026-08-28 → 2026-09-26
| Date | 1 USD in BTN | Daily change |
|---|---|---|
| 2026-09-26 | 95.8173 | 0.00% |
| 2026-09-25 | 95.8173 | -0.15% |
| 2026-09-24 | 95.9598 | +0.23% |
| 2026-09-23 | 95.741 | -0.02% |
| 2026-09-22 | 95.7557 | -0.02% |
| 2026-09-21 | 95.7709 | -0.19% |
| 2026-09-20 | 95.9546 | -0.05% |
| 2026-09-19 | 96.0003 | +0.14% |
| 2026-09-18 | 95.8706 | +0.02% |
| 2026-09-17 | 95.8534 | -0.04% |
| 2026-09-16 | 95.8912 | +0.06% |
| 2026-09-15 | 95.838 | +0.17% |
| 2026-09-14 | 95.6739 | +0.10% |
| 2026-09-13 | 95.5741 | -0.03% |
| 2026-09-12 | 95.602 | -0.13% |
| Date | 1 USD in BTN | Daily change |
|---|---|---|
| 2026-09-11 | 95.7264 | +0.48% |
| 2026-09-10 | 95.269 | +0.32% |
| 2026-09-09 | 94.9629 | +0.32% |
| 2026-09-08 | 94.6603 | +0.21% |
| 2026-09-07 | 94.4588 | -0.04% |
| 2026-09-06 | 94.4992 | +0.07% |
| 2026-09-05 | 94.4324 | -0.05% |
| 2026-09-04 | 94.4749 | +0.08% |
| 2026-09-03 | 94.4028 | -0.57% |
| 2026-09-02 | 94.9469 | +0.04% |
| 2026-09-01 | 94.9087 | -0.55% |
| 2026-08-31 | 95.4357 | +0.01% |
| 2026-08-30 | 95.4215 | -0.08% |
| 2026-08-29 | 95.5026 | +0.09% |
| 2026-08-28 | 95.4143 | — |
USD to BTN conversion table
1 USD95.8173 BTN
5 USD479.0866 BTN
10 USD958.1733 BTN
25 USD2,395.4332 BTN
50 USD4,790.8664 BTN
100 USD9,581.7329 BTN
500 USD47,908.664 BTN
1,000 USD95,817.329 BTN
5,000 USD479,086.64 BTN
10,000 USD958,173.29 BTN
Get the USD/BTN rate in your app
One GET request returns the latest USD → BTN 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/BTN"fetch('https://rate-api.com/api/v1/pair/USD/BTN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} BTN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/BTN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} BTN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/BTN');
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']} BTN\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "BTN"
},
"rate": 95.8173,
"timestamp": 1790429297,
"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
BTN to USDBhutanese Ngultrum → US Dollar0.010437Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.