Convert AUD to NPR
Australian Dollar → Nepalese Rupee
1 AUD = 107.77855 NPR(1 NPR = 0.00927828 AUD)
Currency converter
1 AUD =
107.7786 NPR
AUD to NPR: last 30 days
Over the last 30 days, 1 AUD traded between 107.7786 and 109.9905 NPR, averaging 109.1423 NPR. The AUD/NPR rate is down 1.92% since 2026-08-28.
- 30-day high
- 109.9905
- 2026-08-29
- 30-day low
- 107.7786
- 2026-09-25
- 30-day average
- 109.1423
- Days with data: 30
- 30-day change
- -1.92%
- since 2026-08-28
109.9905
107.77862026-08-28 → 2026-09-26
| Date | 1 AUD in NPR | Daily change |
|---|---|---|
| 2026-09-26 | 107.7786 | 0.00% |
| 2026-09-25 | 107.7786 | -0.10% |
| 2026-09-24 | 107.884 | -0.35% |
| 2026-09-23 | 108.2621 | -0.67% |
| 2026-09-22 | 108.9882 | -0.40% |
| 2026-09-21 | 109.4256 | +0.06% |
| 2026-09-20 | 109.3623 | -0.05% |
| 2026-09-19 | 109.4144 | +0.18% |
| 2026-09-18 | 109.2146 | +0.06% |
| 2026-09-17 | 109.1537 | -0.30% |
| 2026-09-16 | 109.4772 | +0.15% |
| 2026-09-15 | 109.315 | +0.11% |
| 2026-09-14 | 109.19 | -0.50% |
| 2026-09-13 | 109.7334 | -0.03% |
| 2026-09-12 | 109.7654 | -0.13% |
| Date | 1 AUD in NPR | Daily change |
|---|---|---|
| 2026-09-11 | 109.9082 | +0.31% |
| 2026-09-10 | 109.5717 | -0.23% |
| 2026-09-09 | 109.8272 | +0.46% |
| 2026-09-08 | 109.3193 | +0.21% |
| 2026-09-07 | 109.0866 | +0.11% |
| 2026-09-06 | 108.9681 | +0.07% |
| 2026-09-05 | 108.8911 | -0.04% |
| 2026-09-04 | 108.9402 | +0.22% |
| 2026-09-03 | 108.7004 | +0.06% |
| 2026-09-02 | 108.6315 | +0.13% |
| 2026-09-01 | 108.4946 | -0.84% |
| 2026-08-31 | 109.4097 | -0.44% |
| 2026-08-30 | 109.8971 | -0.08% |
| 2026-08-29 | 109.9905 | +0.09% |
| 2026-08-28 | 109.8889 | — |
AUD to NPR conversion table
1 AUD107.7786 NPR
5 AUD538.8927 NPR
10 AUD1,077.7855 NPR
25 AUD2,694.4636 NPR
50 AUD5,388.9273 NPR
100 AUD10,777.855 NPR
500 AUD53,889.273 NPR
1,000 AUD107,778.55 NPR
5,000 AUD538,892.73 NPR
10,000 AUD1,077,785.5 NPR
Get the AUD/NPR rate in your app
One GET request returns the latest AUD → 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/AUD/NPR"fetch('https://rate-api.com/api/v1/pair/AUD/NPR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} NPR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/NPR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} NPR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/NPR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} NPR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "NPR"
},
"rate": 107.7785,
"timestamp": 1790429312,
"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 AUDNepalese Rupee → Australian Dollar0.0092783Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.