Convert NPR to GBP
Nepalese Rupee → British Pound
1 NPR = 0.00492201 GBP(1 GBP = 203.16904 NPR)
Currency converter
1 NPR =
0.004922 GBP
NPR to GBP: last 30 days
Over the last 30 days, 1 NPR traded between 0.0048159 and 0.0049269 GBP, averaging 0.0048678 GBP. The NPR/GBP rate is up 2.11% since 2026-08-28.
- 30-day high
- 0.0049269
- 2026-09-24
- 30-day low
- 0.0048159
- 2026-08-29
- 30-day average
- 0.0048678
- Days with data: 30
- 30-day change
- +2.11%
- since 2026-08-28
0.0049269
0.00481592026-08-28 → 2026-09-26
| Date | 1 NPR in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.004922 | 0.00% |
| 2026-09-25 | 0.004922 | -0.10% |
| 2026-09-24 | 0.0049269 | +0.20% |
| 2026-09-23 | 0.004917 | +0.72% |
| 2026-09-22 | 0.004882 | +0.25% |
| 2026-09-21 | 0.0048698 | -0.19% |
| 2026-09-20 | 0.0048789 | +0.05% |
| 2026-09-19 | 0.0048765 | -0.18% |
| 2026-09-18 | 0.0048855 | +0.27% |
| 2026-09-17 | 0.0048722 | +0.63% |
| 2026-09-16 | 0.0048416 | +0.15% |
| 2026-09-15 | 0.0048344 | -0.09% |
| 2026-09-14 | 0.0048387 | -0.00% |
| 2026-09-13 | 0.0048389 | +0.03% |
| 2026-09-12 | 0.0048375 | +0.13% |
| Date | 1 NPR in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.0048312 | -0.39% |
| 2026-09-10 | 0.00485 | +0.01% |
| 2026-09-09 | 0.0048496 | -0.46% |
| 2026-09-08 | 0.0048721 | -0.32% |
| 2026-09-07 | 0.0048878 | +0.04% |
| 2026-09-06 | 0.004886 | -0.07% |
| 2026-09-05 | 0.0048894 | +0.05% |
| 2026-09-04 | 0.0048872 | -0.32% |
| 2026-09-03 | 0.0049029 | +0.47% |
| 2026-09-02 | 0.0048798 | +0.32% |
| 2026-09-01 | 0.0048645 | +0.62% |
| 2026-08-31 | 0.0048348 | +0.31% |
| 2026-08-30 | 0.00482 | +0.09% |
| 2026-08-29 | 0.0048159 | -0.09% |
| 2026-08-28 | 0.0048204 | — |
NPR to GBP conversion table
1 NPR0.004922 GBP
5 NPR0.02461 GBP
10 NPR0.04922 GBP
25 NPR0.12305 GBP
50 NPR0.2461 GBP
100 NPR0.4922 GBP
500 NPR2.461 GBP
1,000 NPR4.922 GBP
5,000 NPR24.61 GBP
10,000 NPR49.2201 GBP
Get the NPR/GBP rate in your app
One GET request returns the latest NPR → GBP 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/GBP?precision=6"fetch('https://rate-api.com/api/v1/pair/NPR/GBP?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NPR = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NPR/GBP?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NPR = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NPR/GBP?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']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "NPR",
"to": "GBP"
},
"rate": 0.004922,
"timestamp": 1790435145,
"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
GBP to NPRBritish Pound → Nepalese Rupee203.169Convert NPR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.