Convert BTN to USD
Bhutanese Ngultrum → US Dollar
1 BTN = 0.0104365 USD(1 USD = 95.817329 BTN)
Currency converter
1 BTN =
0.010437 USD
BTN to USD: last 30 days
Over the last 30 days, 1 BTN traded between 0.010417 and 0.010593 USD, averaging 0.010484 USD. The BTN/USD rate is down 0.42% since 2026-08-28.
- 30-day high
- 0.010593
- 2026-09-03
- 30-day low
- 0.010417
- 2026-09-19
- 30-day average
- 0.010484
- Days with data: 30
- 30-day change
- -0.42%
- since 2026-08-28
0.010593
0.0104172026-08-28 → 2026-09-26
| Date | 1 BTN in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.010437 | 0.00% |
| 2026-09-25 | 0.010437 | +0.15% |
| 2026-09-24 | 0.010421 | -0.23% |
| 2026-09-23 | 0.010445 | +0.02% |
| 2026-09-22 | 0.010443 | +0.02% |
| 2026-09-21 | 0.010442 | +0.19% |
| 2026-09-20 | 0.010422 | +0.05% |
| 2026-09-19 | 0.010417 | -0.14% |
| 2026-09-18 | 0.010431 | -0.02% |
| 2026-09-17 | 0.010433 | +0.04% |
| 2026-09-16 | 0.010428 | -0.06% |
| 2026-09-15 | 0.010434 | -0.17% |
| 2026-09-14 | 0.010452 | -0.10% |
| 2026-09-13 | 0.010463 | +0.03% |
| 2026-09-12 | 0.01046 | +0.13% |
| Date | 1 BTN in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.010446 | -0.48% |
| 2026-09-10 | 0.010497 | -0.32% |
| 2026-09-09 | 0.01053 | -0.32% |
| 2026-09-08 | 0.010564 | -0.21% |
| 2026-09-07 | 0.010587 | +0.04% |
| 2026-09-06 | 0.010582 | -0.07% |
| 2026-09-05 | 0.01059 | +0.05% |
| 2026-09-04 | 0.010585 | -0.08% |
| 2026-09-03 | 0.010593 | +0.58% |
| 2026-09-02 | 0.010532 | -0.04% |
| 2026-09-01 | 0.010536 | +0.56% |
| 2026-08-31 | 0.010478 | -0.01% |
| 2026-08-30 | 0.01048 | +0.09% |
| 2026-08-29 | 0.010471 | -0.09% |
| 2026-08-28 | 0.010481 | — |
BTN to USD conversion table
1 BTN0.010437 USD
5 BTN0.052183 USD
10 BTN0.10437 USD
25 BTN0.26091 USD
50 BTN0.52183 USD
100 BTN1.0437 USD
500 BTN5.2183 USD
1,000 BTN10.4365 USD
5,000 BTN52.1826 USD
10,000 BTN104.3653 USD
Get the BTN/USD rate in your app
One GET request returns the latest BTN → 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/BTN/USD"fetch('https://rate-api.com/api/v1/pair/BTN/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BTN = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BTN/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BTN = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BTN/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BTN = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "BTN",
"to": "USD"
},
"rate": 0.0104,
"timestamp": 1790432030,
"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 BTNUS Dollar → Bhutanese Ngultrum95.8173Convert BTN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.