Convert NPR to CAD
Nepalese Rupee → Canadian Dollar
1 NPR = 0.00922509 CAD(1 CAD = 108.40007 NPR)
Currency converter
1 NPR =
0.0092251 CAD
NPR to CAD: last 30 days
Over the last 30 days, 1 NPR traded between 0.0090437 and 0.0092251 CAD, averaging 0.0091159 CAD. The NPR/CAD rate is up 1.70% since 2026-08-28.
- 30-day high
- 0.0092251
- 2026-09-25
- 30-day low
- 0.0090437
- 2026-09-11
- 30-day average
- 0.0091159
- Days with data: 30
- 30-day change
- +1.70%
- since 2026-08-28
0.0092251
0.00904372026-08-28 → 2026-09-26
| Date | 1 NPR in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0092251 | 0.00% |
| 2026-09-25 | 0.0092251 | +0.33% |
| 2026-09-24 | 0.0091947 | -0.03% |
| 2026-09-23 | 0.0091974 | +0.38% |
| 2026-09-22 | 0.0091623 | +0.30% |
| 2026-09-21 | 0.0091347 | +0.15% |
| 2026-09-20 | 0.0091211 | +0.05% |
| 2026-09-19 | 0.0091168 | -0.18% |
| 2026-09-18 | 0.0091335 | +0.14% |
| 2026-09-17 | 0.009121 | +0.44% |
| 2026-09-16 | 0.0090809 | +0.08% |
| 2026-09-15 | 0.0090736 | +0.07% |
| 2026-09-14 | 0.0090676 | +0.10% |
| 2026-09-13 | 0.0090581 | +0.03% |
| 2026-09-12 | 0.0090554 | +0.13% |
| Date | 1 NPR in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0090437 | -0.18% |
| 2026-09-10 | 0.0090596 | +0.03% |
| 2026-09-09 | 0.0090572 | -0.59% |
| 2026-09-08 | 0.0091106 | -0.32% |
| 2026-09-07 | 0.0091399 | +0.19% |
| 2026-09-06 | 0.0091228 | -0.07% |
| 2026-09-05 | 0.0091292 | +0.05% |
| 2026-09-04 | 0.0091251 | -0.02% |
| 2026-09-03 | 0.0091268 | -0.38% |
| 2026-09-02 | 0.009162 | +0.23% |
| 2026-09-01 | 0.0091414 | +0.57% |
| 2026-08-31 | 0.0090896 | +0.22% |
| 2026-08-30 | 0.00907 | +0.09% |
| 2026-08-29 | 0.0090623 | -0.09% |
| 2026-08-28 | 0.0090706 | — |
NPR to CAD conversion table
1 NPR0.0092251 CAD
5 NPR0.046125 CAD
10 NPR0.092251 CAD
25 NPR0.23063 CAD
50 NPR0.46125 CAD
100 NPR0.92251 CAD
500 NPR4.6125 CAD
1,000 NPR9.2251 CAD
5,000 NPR46.1254 CAD
10,000 NPR92.2509 CAD
Get the NPR/CAD rate in your app
One GET request returns the latest NPR → CAD 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/NPR/CAD?precision=6"fetch('https://rate-api.com/api/v1/pair/NPR/CAD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NPR = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NPR/CAD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NPR = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NPR/CAD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 NPR = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "NPR",
"to": "CAD"
},
"rate": 0.009225,
"timestamp": 1790435117,
"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
CAD to NPRCanadian Dollar → Nepalese Rupee108.4001Convert NPR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.