Convert INR to BTN
Indian Rupee → Bhutanese Ngultrum
1 INR = 1 BTN(1 BTN = 1 INR)
Currency converter
1 INR =
1 BTN
INR to BTN: last 30 days
Over the last 30 days, 1 INR traded between 0.99821 and 1.0028 BTN, averaging 1 BTN. The INR/BTN rate is down 0.03% since 2026-08-28.
- 30-day high
- 1.0028
- 2026-08-31
- 30-day low
- 0.99821
- 2026-09-10
- 30-day average
- 1
- Days with data: 30
- 30-day change
- -0.03%
- since 2026-08-28
1.0028
0.998212026-08-28 → 2026-09-26
| Date | 1 INR in BTN | Daily change |
|---|---|---|
| 2026-09-26 | 1 | 0.00% |
| 2026-09-25 | 1 | 0.00% |
| 2026-09-24 | 1 | 0.00% |
| 2026-09-23 | 1 | -0.17% |
| 2026-09-22 | 1.0017 | +0.22% |
| 2026-09-21 | 0.99949 | -0.13% |
| 2026-09-20 | 1.0008 | -0.05% |
| 2026-09-19 | 1.0013 | +0.14% |
| 2026-09-18 | 0.9999 | +0.08% |
| 2026-09-17 | 0.9991 | -0.02% |
| 2026-09-16 | 0.99928 | +0.06% |
| 2026-09-15 | 0.99873 | -0.25% |
| 2026-09-14 | 1.0012 | +0.10% |
| 2026-09-13 | 1.0001 | -0.03% |
| 2026-09-12 | 1.0004 | -0.13% |
| Date | 1 INR in BTN | Daily change |
|---|---|---|
| 2026-09-11 | 1.0017 | +0.35% |
| 2026-09-10 | 0.99821 | -0.02% |
| 2026-09-09 | 0.99845 | +0.02% |
| 2026-09-08 | 0.99821 | -0.15% |
| 2026-09-07 | 0.99967 | -0.04% |
| 2026-09-06 | 1.0001 | +0.07% |
| 2026-09-05 | 0.99939 | -0.05% |
| 2026-09-04 | 0.99984 | +0.08% |
| 2026-09-03 | 0.99908 | -0.07% |
| 2026-09-02 | 0.99976 | +0.02% |
| 2026-09-01 | 0.99956 | -0.32% |
| 2026-08-31 | 1.0028 | +0.25% |
| 2026-08-30 | 1.0003 | -0.08% |
| 2026-08-29 | 1.0012 | +0.09% |
| 2026-08-28 | 1.0003 | — |
INR to BTN conversion table
1 INR1 BTN
5 INR5 BTN
10 INR10 BTN
25 INR25 BTN
50 INR50 BTN
100 INR100 BTN
500 INR500 BTN
1,000 INR1,000 BTN
5,000 INR5,000 BTN
10,000 INR10,000 BTN
Get the INR/BTN rate in your app
One GET request returns the latest INR → 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/INR/BTN"fetch('https://rate-api.com/api/v1/pair/INR/BTN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} BTN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/BTN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} BTN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/BTN');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} BTN\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "BTN"
},
"rate": 1,
"timestamp": 1790429397,
"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 INRBhutanese Ngultrum → Indian Rupee1Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.