Convert INR to AUD
Indian Rupee → Australian Dollar
1 INR = 0.0148453 AUD(1 AUD = 67.361591 INR)
Currency converter
1 INR =
0.014845 AUD
INR to AUD: last 30 days
Over the last 30 days, 1 INR traded between 0.014553 and 0.014845 AUD, averaging 0.014666 AUD. The INR/AUD rate is up 1.88% since 2026-08-28.
- 30-day high
- 0.014845
- 2026-09-25
- 30-day low
- 0.014553
- 2026-09-09
- 30-day average
- 0.014666
- Days with data: 30
- 30-day change
- +1.88%
- since 2026-08-28
0.014845
0.0145532026-08-28 → 2026-09-26
| Date | 1 INR in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.014845 | 0.00% |
| 2026-09-25 | 0.014845 | +0.10% |
| 2026-09-24 | 0.014831 | +0.35% |
| 2026-09-23 | 0.014779 | +0.45% |
| 2026-09-22 | 0.014713 | +0.63% |
| 2026-09-21 | 0.014621 | -0.19% |
| 2026-09-20 | 0.014649 | 0.00% |
| 2026-09-19 | 0.014649 | 0.00% |
| 2026-09-18 | 0.014649 | -0.02% |
| 2026-09-17 | 0.014652 | +0.28% |
| 2026-09-16 | 0.014611 | -0.09% |
| 2026-09-15 | 0.014625 | -0.36% |
| 2026-09-14 | 0.014678 | +0.60% |
| 2026-09-13 | 0.01459 | 0.00% |
| 2026-09-12 | 0.01459 | 0.00% |
| Date | 1 INR in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.01459 | +0.05% |
| 2026-09-10 | 0.014583 | +0.21% |
| 2026-09-09 | 0.014553 | -0.44% |
| 2026-09-08 | 0.014617 | -0.36% |
| 2026-09-07 | 0.014669 | -0.15% |
| 2026-09-06 | 0.014692 | 0.00% |
| 2026-09-05 | 0.014692 | 0.00% |
| 2026-09-04 | 0.014692 | -0.14% |
| 2026-09-03 | 0.014713 | -0.13% |
| 2026-09-02 | 0.014732 | -0.11% |
| 2026-09-01 | 0.014748 | +0.52% |
| 2026-08-31 | 0.014672 | +0.69% |
| 2026-08-30 | 0.014571 | 0.00% |
| 2026-08-29 | 0.014571 | 0.00% |
| 2026-08-28 | 0.014571 | — |
INR to AUD conversion table
1 INR0.014845 AUD
5 INR0.074226 AUD
10 INR0.14845 AUD
25 INR0.37113 AUD
50 INR0.74226 AUD
100 INR1.4845 AUD
500 INR7.4226 AUD
1,000 INR14.8453 AUD
5,000 INR74.2263 AUD
10,000 INR148.4526 AUD
Get the INR/AUD rate in your app
One GET request returns the latest INR → 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/INR/AUD"fetch('https://rate-api.com/api/v1/pair/INR/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "AUD"
},
"rate": 0.0148,
"timestamp": 1790429384,
"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 INRAustralian Dollar → Indian Rupee67.3616Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.