Convert EUR to NPR
Euro → Nepalese Rupee
1 EUR = 174.8168 NPR(1 NPR = 0.00572027 EUR)
Currency converter
1 EUR =
174.8168 NPR
EUR to NPR: last 30 days
Over the last 30 days, 1 EUR traded between 174.524 and 177.9923 NPR, averaging 176.3299 NPR. The EUR/NPR rate is down 1.69% since 2026-08-28.
- 30-day high
- 177.9923
- 2026-08-29
- 30-day low
- 174.524
- 2026-09-24
- 30-day average
- 176.3299
- Days with data: 30
- 30-day change
- -1.69%
- since 2026-08-28
177.9923
174.5242026-08-28 → 2026-09-26
| Date | 1 EUR in NPR | Daily change |
|---|---|---|
| 2026-09-26 | 174.8168 | 0.00% |
| 2026-09-25 | 174.8168 | +0.17% |
| 2026-09-24 | 174.524 | -0.16% |
| 2026-09-23 | 174.8 | -0.52% |
| 2026-09-22 | 175.7064 | -0.25% |
| 2026-09-21 | 176.1481 | +0.07% |
| 2026-09-20 | 176.025 | -0.05% |
| 2026-09-19 | 176.1088 | +0.18% |
| 2026-09-18 | 175.7872 | -0.21% |
| 2026-09-17 | 176.1622 | -0.52% |
| 2026-09-16 | 177.0898 | +0.04% |
| 2026-09-15 | 177.0221 | +0.07% |
| 2026-09-14 | 176.9027 | -0.25% |
| 2026-09-13 | 177.3471 | -0.03% |
| 2026-09-12 | 177.3989 | -0.13% |
| Date | 1 EUR in NPR | Daily change |
|---|---|---|
| 2026-09-11 | 177.6297 | +0.27% |
| 2026-09-10 | 177.1465 | +0.01% |
| 2026-09-09 | 177.1245 | +0.65% |
| 2026-09-08 | 175.984 | +0.14% |
| 2026-09-07 | 175.7298 | -0.04% |
| 2026-09-06 | 175.8049 | +0.07% |
| 2026-09-05 | 175.6807 | -0.04% |
| 2026-09-04 | 175.7598 | +0.14% |
| 2026-09-03 | 175.5195 | -0.26% |
| 2026-09-02 | 175.9691 | -0.06% |
| 2026-09-01 | 176.0817 | -0.60% |
| 2026-08-31 | 177.1498 | -0.39% |
| 2026-08-30 | 177.8411 | -0.08% |
| 2026-08-29 | 177.9923 | +0.09% |
| 2026-08-28 | 177.8278 | — |
EUR to NPR conversion table
1 EUR174.8168 NPR
5 EUR874.084 NPR
10 EUR1,748.168 NPR
25 EUR4,370.42 NPR
50 EUR8,740.84 NPR
100 EUR17,481.68 NPR
500 EUR87,408.4 NPR
1,000 EUR174,816.8 NPR
5,000 EUR874,084 NPR
10,000 EUR1,748,168 NPR
Get the EUR/NPR rate in your app
One GET request returns the latest EUR → 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/EUR/NPR"fetch('https://rate-api.com/api/v1/pair/EUR/NPR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} NPR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/NPR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} NPR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/NPR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} NPR\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "NPR"
},
"rate": 174.8168,
"timestamp": 1790429388,
"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 EURNepalese Rupee → Euro0.0057203Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.