Convert AUD to INR
Australian Dollar → Indian Rupee
1 AUD = 67.361591 INR(1 INR = 0.0148453 AUD)
Currency converter
1 AUD =
67.3616 INR
AUD to INR: last 30 days
Over the last 30 days, 1 AUD traded between 67.3616 and 68.7161 INR, averaging 68.1859 INR. The AUD/INR rate is down 1.85% since 2026-08-28.
- 30-day high
- 68.7161
- 2026-09-09
- 30-day low
- 67.3616
- 2026-09-25
- 30-day average
- 68.1859
- Days with data: 30
- 30-day change
- -1.85%
- since 2026-08-28
68.7161
67.36162026-08-28 → 2026-09-26
| Date | 1 AUD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 67.3616 | 0.00% |
| 2026-09-25 | 67.3616 | -0.10% |
| 2026-09-24 | 67.4275 | -0.35% |
| 2026-09-23 | 67.6638 | -0.45% |
| 2026-09-22 | 67.9679 | -0.62% |
| 2026-09-21 | 68.394 | +0.19% |
| 2026-09-20 | 68.2663 | 0.00% |
| 2026-09-19 | 68.2663 | 0.00% |
| 2026-09-18 | 68.2663 | +0.02% |
| 2026-09-17 | 68.2507 | -0.28% |
| 2026-09-16 | 68.4402 | +0.09% |
| 2026-09-15 | 68.3768 | +0.36% |
| 2026-09-14 | 68.1306 | -0.60% |
| 2026-09-13 | 68.5411 | 0.00% |
| 2026-09-12 | 68.5411 | 0.00% |
| Date | 1 AUD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 68.5411 | -0.05% |
| 2026-09-10 | 68.5731 | -0.21% |
| 2026-09-09 | 68.7161 | +0.44% |
| 2026-09-08 | 68.415 | +0.36% |
| 2026-09-07 | 68.1697 | +0.15% |
| 2026-09-06 | 68.0666 | 0.00% |
| 2026-09-05 | 68.0666 | 0.00% |
| 2026-09-04 | 68.0666 | +0.14% |
| 2026-09-03 | 67.9686 | +0.13% |
| 2026-09-02 | 67.8794 | +0.11% |
| 2026-09-01 | 67.8069 | -0.52% |
| 2026-08-31 | 68.1587 | -0.69% |
| 2026-08-30 | 68.6308 | 0.00% |
| 2026-08-29 | 68.6308 | 0.00% |
| 2026-08-28 | 68.6308 | — |
AUD to INR conversion table
1 AUD67.3616 INR
5 AUD336.808 INR
10 AUD673.6159 INR
25 AUD1,684.0398 INR
50 AUD3,368.0795 INR
100 AUD6,736.1591 INR
500 AUD33,680.795 INR
1,000 AUD67,361.591 INR
5,000 AUD336,807.95 INR
10,000 AUD673,615.91 INR
Get the AUD/INR rate in your app
One GET request returns the latest AUD → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/AUD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "INR"
},
"rate": 67.3616,
"timestamp": 1790429383,
"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
INR to AUDIndian Rupee → Australian Dollar0.014845Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.