Convert RUB to AED
Russian Ruble → UAE Dirham
1 RUB = 0.0431992 AED(1 AED = 23.148554 RUB)
Currency converter
1 RUB =
0.043199 AED
RUB to AED: last 30 days
Over the last 30 days, 1 RUB traded between 0.042069 and 0.043846 AED, averaging 0.043097 AED. The RUB/AED rate is up 0.54% since 2026-08-28.
- 30-day high
- 0.043846
- 2026-09-22
- 30-day low
- 0.042069
- 2026-09-03
- 30-day average
- 0.043097
- Days with data: 30
- 30-day change
- +0.54%
- since 2026-08-28
0.043846
0.0420692026-08-28 → 2026-09-26
| Date | 1 RUB in AED | Daily change |
|---|---|---|
| 2026-09-26 | 0.043199 | 0.00% |
| 2026-09-25 | 0.043199 | -0.20% |
| 2026-09-24 | 0.043287 | -0.64% |
| 2026-09-23 | 0.043566 | -0.64% |
| 2026-09-22 | 0.043846 | +0.49% |
| 2026-09-21 | 0.043635 | -0.09% |
| 2026-09-20 | 0.043676 | +0.37% |
| 2026-09-19 | 0.043515 | +0.12% |
| 2026-09-18 | 0.043462 | -0.32% |
| 2026-09-17 | 0.043601 | -0.04% |
| 2026-09-16 | 0.043618 | +0.37% |
| 2026-09-15 | 0.043456 | +0.03% |
| 2026-09-14 | 0.043444 | -0.30% |
| 2026-09-13 | 0.043573 | -0.11% |
| 2026-09-12 | 0.043621 | -0.27% |
| Date | 1 RUB in AED | Daily change |
|---|---|---|
| 2026-09-11 | 0.043741 | +1.23% |
| 2026-09-10 | 0.043208 | +1.00% |
| 2026-09-09 | 0.042779 | +0.45% |
| 2026-09-08 | 0.042586 | +0.43% |
| 2026-09-07 | 0.042402 | -0.06% |
| 2026-09-06 | 0.042428 | -0.85% |
| 2026-09-05 | 0.042791 | +0.97% |
| 2026-09-04 | 0.042379 | +0.74% |
| 2026-09-03 | 0.042069 | -0.54% |
| 2026-09-02 | 0.042298 | -0.58% |
| 2026-09-01 | 0.042546 | -0.40% |
| 2026-08-31 | 0.042718 | +0.06% |
| 2026-08-30 | 0.042694 | +0.19% |
| 2026-08-29 | 0.042615 | -0.82% |
| 2026-08-28 | 0.042968 | — |
RUB to AED conversion table
1 RUB0.043199 AED
5 RUB0.216 AED
10 RUB0.43199 AED
25 RUB1.08 AED
50 RUB2.16 AED
100 RUB4.3199 AED
500 RUB21.5996 AED
1,000 RUB43.1992 AED
5,000 RUB215.9962 AED
10,000 RUB431.9924 AED
Get the RUB/AED rate in your app
One GET request returns the latest RUB → 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/RUB/AED"fetch('https://rate-api.com/api/v1/pair/RUB/AED', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} AED`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/AED",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} AED")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/AED');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} AED\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "AED"
},
"rate": 0.0432,
"timestamp": 1790429260,
"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 RUBUAE Dirham → Russian Ruble23.1486Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.