Convert INR to NPR
Indian Rupee → Nepalese Rupee
1 INR = 1.6 NPR(1 NPR = 0.625 INR)
Currency converter
1 INR =
1.6 NPR
INR to NPR: last 30 days
Over the last 30 days, 1 INR traded between 1.5979 and 1.6052 NPR, averaging 1.6007 NPR. The INR/NPR rate is down 0.07% since 2026-08-28.
- 30-day high
- 1.6052
- 2026-08-31
- 30-day low
- 1.5979
- 2026-09-10
- 30-day average
- 1.6007
- Days with data: 30
- 30-day change
- -0.07%
- since 2026-08-28
1.6052
1.59792026-08-28 → 2026-09-26
| Date | 1 INR in NPR | Daily change |
|---|---|---|
| 2026-09-26 | 1.6 | 0.00% |
| 2026-09-25 | 1.6 | 0.00% |
| 2026-09-24 | 1.6 | 0.00% |
| 2026-09-23 | 1.6 | -0.22% |
| 2026-09-22 | 1.6035 | +0.22% |
| 2026-09-21 | 1.5999 | -0.13% |
| 2026-09-20 | 1.602 | -0.05% |
| 2026-09-19 | 1.6028 | +0.18% |
| 2026-09-18 | 1.5998 | +0.03% |
| 2026-09-17 | 1.5993 | -0.02% |
| 2026-09-16 | 1.5996 | +0.06% |
| 2026-09-15 | 1.5987 | -0.25% |
| 2026-09-14 | 1.6027 | +0.10% |
| 2026-09-13 | 1.601 | -0.03% |
| 2026-09-12 | 1.6015 | -0.13% |
| Date | 1 INR in NPR | Daily change |
|---|---|---|
| 2026-09-11 | 1.6035 | +0.35% |
| 2026-09-10 | 1.5979 | -0.02% |
| 2026-09-09 | 1.5983 | +0.02% |
| 2026-09-08 | 1.5979 | -0.15% |
| 2026-09-07 | 1.6002 | -0.04% |
| 2026-09-06 | 1.6009 | +0.07% |
| 2026-09-05 | 1.5998 | -0.04% |
| 2026-09-04 | 1.6005 | +0.08% |
| 2026-09-03 | 1.5993 | -0.07% |
| 2026-09-02 | 1.6004 | +0.02% |
| 2026-09-01 | 1.6001 | -0.32% |
| 2026-08-31 | 1.6052 | +0.25% |
| 2026-08-30 | 1.6013 | -0.08% |
| 2026-08-29 | 1.6026 | +0.09% |
| 2026-08-28 | 1.6012 | — |
INR to NPR conversion table
1 INR1.6 NPR
5 INR8 NPR
10 INR16 NPR
25 INR40 NPR
50 INR80 NPR
100 INR160 NPR
500 INR800 NPR
1,000 INR1,600 NPR
5,000 INR8,000 NPR
10,000 INR16,000 NPR
Get the INR/NPR rate in your app
One GET request returns the latest INR → NPR 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/NPR"fetch('https://rate-api.com/api/v1/pair/INR/NPR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} NPR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/NPR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} NPR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/NPR');
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']} NPR\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "NPR"
},
"rate": 1.6,
"timestamp": 1790437778,
"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
NPR to INRNepalese Rupee → Indian Rupee0.625Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.