Convert NPR to AUD
Nepalese Rupee → Australian Dollar
1 NPR = 0.00927828 AUD(1 AUD = 107.77855 NPR)
Currency converter
1 NPR =
0.0092783 AUD
NPR to AUD: last 30 days
Over the last 30 days, 1 NPR traded between 0.0090917 and 0.0092783 AUD, averaging 0.0091626 AUD. The NPR/AUD rate is up 1.96% since 2026-08-28.
- 30-day high
- 0.0092783
- 2026-09-25
- 30-day low
- 0.0090917
- 2026-08-29
- 30-day average
- 0.0091626
- Days with data: 30
- 30-day change
- +1.96%
- since 2026-08-28
0.0092783
0.00909172026-08-28 → 2026-09-26
| Date | 1 NPR in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0092783 | 0.00% |
| 2026-09-25 | 0.0092783 | +0.10% |
| 2026-09-24 | 0.0092692 | +0.35% |
| 2026-09-23 | 0.0092368 | +0.67% |
| 2026-09-22 | 0.0091753 | +0.40% |
| 2026-09-21 | 0.0091386 | -0.06% |
| 2026-09-20 | 0.0091439 | +0.05% |
| 2026-09-19 | 0.0091396 | -0.18% |
| 2026-09-18 | 0.0091563 | -0.06% |
| 2026-09-17 | 0.0091614 | +0.30% |
| 2026-09-16 | 0.0091343 | -0.15% |
| 2026-09-15 | 0.0091479 | -0.11% |
| 2026-09-14 | 0.0091583 | +0.50% |
| 2026-09-13 | 0.009113 | +0.03% |
| 2026-09-12 | 0.0091103 | +0.13% |
| Date | 1 NPR in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0090985 | -0.31% |
| 2026-09-10 | 0.0091264 | +0.23% |
| 2026-09-09 | 0.0091052 | -0.46% |
| 2026-09-08 | 0.0091475 | -0.21% |
| 2026-09-07 | 0.009167 | -0.11% |
| 2026-09-06 | 0.009177 | -0.07% |
| 2026-09-05 | 0.0091835 | +0.05% |
| 2026-09-04 | 0.0091794 | -0.22% |
| 2026-09-03 | 0.0091996 | -0.06% |
| 2026-09-02 | 0.0092054 | -0.13% |
| 2026-09-01 | 0.009217 | +0.84% |
| 2026-08-31 | 0.00914 | +0.45% |
| 2026-08-30 | 0.0090994 | +0.09% |
| 2026-08-29 | 0.0090917 | -0.09% |
| 2026-08-28 | 0.0091001 | — |
NPR to AUD conversion table
1 NPR0.0092783 AUD
5 NPR0.046391 AUD
10 NPR0.092783 AUD
25 NPR0.23196 AUD
50 NPR0.46391 AUD
100 NPR0.92783 AUD
500 NPR4.6391 AUD
1,000 NPR9.2783 AUD
5,000 NPR46.3914 AUD
10,000 NPR92.7828 AUD
Get the NPR/AUD rate in your app
One GET request returns the latest NPR → AUD 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/AUD?precision=6"fetch('https://rate-api.com/api/v1/pair/NPR/AUD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NPR = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NPR/AUD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NPR = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NPR/AUD?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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "NPR",
"to": "AUD"
},
"rate": 0.009278,
"timestamp": 1790432075,
"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
AUD to NPRAustralian Dollar → Nepalese Rupee107.7786Convert NPR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.