Convert AED to RUB
UAE Dirham → Russian Ruble
1 AED = 23.148554 RUB(1 RUB = 0.0431992 AED)
Currency converter
1 AED =
23.1486 RUB
AED to RUB: last 30 days
Over the last 30 days, 1 AED traded between 22.8069 and 23.7705 RUB, averaging 23.2066 RUB. The AED/RUB rate is down 0.54% since 2026-08-28.
- 30-day high
- 23.7705
- 2026-09-03
- 30-day low
- 22.8069
- 2026-09-22
- 30-day average
- 23.2066
- Days with data: 30
- 30-day change
- -0.54%
- since 2026-08-28
23.7705
22.80692026-08-28 → 2026-09-26
| Date | 1 AED in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 23.1486 | 0.00% |
| 2026-09-25 | 23.1486 | +0.20% |
| 2026-09-24 | 23.1015 | +0.64% |
| 2026-09-23 | 22.9537 | +0.64% |
| 2026-09-22 | 22.8069 | -0.48% |
| 2026-09-21 | 22.9176 | +0.10% |
| 2026-09-20 | 22.8958 | -0.37% |
| 2026-09-19 | 22.9808 | -0.12% |
| 2026-09-18 | 23.0088 | +0.32% |
| 2026-09-17 | 22.9351 | +0.04% |
| 2026-09-16 | 22.9266 | -0.37% |
| 2026-09-15 | 23.012 | -0.03% |
| 2026-09-14 | 23.0181 | +0.30% |
| 2026-09-13 | 22.9502 | +0.11% |
| 2026-09-12 | 22.9247 | +0.27% |
| Date | 1 AED in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 22.8619 | -1.22% |
| 2026-09-10 | 23.1438 | -0.99% |
| 2026-09-09 | 23.3758 | -0.45% |
| 2026-09-08 | 23.4819 | -0.43% |
| 2026-09-07 | 23.5839 | +0.06% |
| 2026-09-06 | 23.5694 | +0.86% |
| 2026-09-05 | 23.3692 | -0.96% |
| 2026-09-04 | 23.5966 | -0.73% |
| 2026-09-03 | 23.7705 | +0.54% |
| 2026-09-02 | 23.6419 | +0.59% |
| 2026-09-01 | 23.5042 | +0.41% |
| 2026-08-31 | 23.4092 | -0.06% |
| 2026-08-30 | 23.4225 | -0.19% |
| 2026-08-29 | 23.4662 | +0.83% |
| 2026-08-28 | 23.2732 | — |
AED to RUB conversion table
1 AED23.1486 RUB
5 AED115.7428 RUB
10 AED231.4855 RUB
25 AED578.7139 RUB
50 AED1,157.4277 RUB
100 AED2,314.8554 RUB
500 AED11,574.277 RUB
1,000 AED23,148.554 RUB
5,000 AED115,742.77 RUB
10,000 AED231,485.54 RUB
Get the AED/RUB rate in your app
One GET request returns the latest AED → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/AED/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AED = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AED/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AED = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AED/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "AED",
"to": "RUB"
},
"rate": 23.1486,
"timestamp": 1790432034,
"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
RUB to AEDRussian Ruble → UAE Dirham0.043199Convert AED to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.