Convert AED to INR
UAE Dirham → Indian Rupee
1 AED = 26.090491 INR(1 INR = 0.0383281 AED)
Currency converter
1 AED =
26.0905 INR
AED to INR: last 30 days
Over the last 30 days, 1 AED traded between 25.7291 and 26.1293 INR, averaging 25.973 INR. The AED/INR rate is up 0.45% since 2026-08-28.
- 30-day high
- 26.1293
- 2026-09-15
- 30-day low
- 25.7291
- 2026-09-03
- 30-day average
- 25.973
- Days with data: 30
- 30-day change
- +0.45%
- since 2026-08-28
26.1293
25.72912026-08-28 → 2026-09-26
| Date | 1 AED in INR | Daily change |
|---|---|---|
| 2026-09-26 | 26.0905 | 0.00% |
| 2026-09-25 | 26.0905 | -0.15% |
| 2026-09-24 | 26.1293 | +0.23% |
| 2026-09-23 | 26.0697 | +0.16% |
| 2026-09-22 | 26.0286 | -0.24% |
| 2026-09-21 | 26.0912 | -0.06% |
| 2026-09-20 | 26.1076 | 0.00% |
| 2026-09-19 | 26.1076 | -0.00% |
| 2026-09-18 | 26.1076 | -0.06% |
| 2026-09-17 | 26.1239 | -0.02% |
| 2026-09-16 | 26.1293 | 0.00% |
| 2026-09-15 | 26.1293 | +0.42% |
| 2026-09-14 | 26.0204 | 0.00% |
| 2026-09-13 | 26.0204 | 0.00% |
| 2026-09-12 | 26.0204 | 0.00% |
| Date | 1 AED in INR | Daily change |
|---|---|---|
| 2026-09-11 | 26.0204 | +0.13% |
| 2026-09-10 | 25.9877 | +0.35% |
| 2026-09-09 | 25.8979 | +0.30% |
| 2026-09-08 | 25.8216 | +0.36% |
| 2026-09-07 | 25.7291 | 0.00% |
| 2026-09-06 | 25.7291 | 0.00% |
| 2026-09-05 | 25.7291 | 0.00% |
| 2026-09-04 | 25.7291 | 0.00% |
| 2026-09-03 | 25.7291 | -0.51% |
| 2026-09-02 | 25.8598 | +0.02% |
| 2026-09-01 | 25.8543 | -0.23% |
| 2026-08-31 | 25.9142 | -0.23% |
| 2026-08-30 | 25.9741 | 0.00% |
| 2026-08-29 | 25.9741 | 0.00% |
| 2026-08-28 | 25.9741 | — |
AED to INR conversion table
1 AED26.0905 INR
5 AED130.4525 INR
10 AED260.9049 INR
25 AED652.2623 INR
50 AED1,304.5246 INR
100 AED2,609.0491 INR
500 AED13,045.246 INR
1,000 AED26,090.491 INR
5,000 AED130,452.46 INR
10,000 AED260,904.91 INR
Get the AED/INR rate in your app
One GET request returns the latest AED → 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/AED/INR"fetch('https://rate-api.com/api/v1/pair/AED/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AED = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AED/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AED = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AED/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AED = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "AED",
"to": "INR"
},
"rate": 26.0905,
"timestamp": 1790435076,
"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 AEDIndian Rupee → UAE Dirham0.038328Convert AED to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.