Convert INR to AED
Indian Rupee → UAE Dirham
1 INR = 0.0383281 AED(1 AED = 26.090491 INR)
Currency converter
1 INR =
0.038328 AED
INR to AED: last 30 days
Over the last 30 days, 1 INR traded between 0.038271 and 0.038867 AED, averaging 0.038503 AED. The INR/AED rate is down 0.45% since 2026-08-28.
- 30-day high
- 0.038867
- 2026-09-03
- 30-day low
- 0.038271
- 2026-09-15
- 30-day average
- 0.038503
- Days with data: 30
- 30-day change
- -0.45%
- since 2026-08-28
0.038867
0.0382712026-08-28 → 2026-09-26
| Date | 1 INR in AED | Daily change |
|---|---|---|
| 2026-09-26 | 0.038328 | 0.00% |
| 2026-09-25 | 0.038328 | +0.15% |
| 2026-09-24 | 0.038271 | -0.23% |
| 2026-09-23 | 0.038359 | -0.16% |
| 2026-09-22 | 0.038419 | +0.24% |
| 2026-09-21 | 0.038327 | +0.06% |
| 2026-09-20 | 0.038303 | 0.00% |
| 2026-09-19 | 0.038303 | +0.00% |
| 2026-09-18 | 0.038303 | +0.06% |
| 2026-09-17 | 0.038279 | +0.02% |
| 2026-09-16 | 0.038271 | 0.00% |
| 2026-09-15 | 0.038271 | -0.42% |
| 2026-09-14 | 0.038431 | 0.00% |
| 2026-09-13 | 0.038431 | 0.00% |
| 2026-09-12 | 0.038431 | 0.00% |
| Date | 1 INR in AED | Daily change |
|---|---|---|
| 2026-09-11 | 0.038431 | -0.13% |
| 2026-09-10 | 0.03848 | -0.35% |
| 2026-09-09 | 0.038613 | -0.29% |
| 2026-09-08 | 0.038727 | -0.36% |
| 2026-09-07 | 0.038867 | 0.00% |
| 2026-09-06 | 0.038867 | 0.00% |
| 2026-09-05 | 0.038867 | 0.00% |
| 2026-09-04 | 0.038867 | 0.00% |
| 2026-09-03 | 0.038867 | +0.51% |
| 2026-09-02 | 0.03867 | -0.02% |
| 2026-09-01 | 0.038678 | +0.23% |
| 2026-08-31 | 0.038589 | +0.23% |
| 2026-08-30 | 0.0385 | 0.00% |
| 2026-08-29 | 0.0385 | 0.00% |
| 2026-08-28 | 0.0385 | — |
INR to AED conversion table
1 INR0.038328 AED
5 INR0.19164 AED
10 INR0.38328 AED
25 INR0.9582 AED
50 INR1.9164 AED
100 INR3.8328 AED
500 INR19.1641 AED
1,000 INR38.3281 AED
5,000 INR191.6407 AED
10,000 INR383.2814 AED
Get the INR/AED rate in your app
One GET request returns the latest INR → AED 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/AED"fetch('https://rate-api.com/api/v1/pair/INR/AED', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} AED`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/AED",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} AED")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/AED');
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']} AED\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "AED"
},
"rate": 0.0383,
"timestamp": 1790429355,
"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
AED to INRUAE Dirham → Indian Rupee26.0905Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.