Convert XDR to RUB
IMF Special Drawing Rights → Russian Ruble
1 XDR = 115.5192 RUB(1 RUB = 0.00865657 XDR)
Currency converter
1 XDR =
115.5192 RUB
XDR to RUB: last 30 days
Over the last 30 days, 1 XDR traded between 114.4259 and 119.5098 RUB, averaging 116.8256 RUB. The XDR/RUB rate is down 1.41% since 2026-08-28.
- 30-day high
- 119.5098
- 2026-09-18
- 30-day low
- 114.4259
- 2026-09-22
- 30-day average
- 116.8256
- Days with data: 30
- 30-day change
- -1.41%
- since 2026-08-28
119.5098
114.42592026-08-28 → 2026-09-26
| Date | 1 XDR in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 115.5192 | 0.00% |
| 2026-09-25 | 115.5192 | +0.01% |
| 2026-09-24 | 115.5112 | +0.42% |
| 2026-09-23 | 115.0317 | +0.53% |
| 2026-09-22 | 114.4259 | -0.36% |
| 2026-09-21 | 114.8379 | -0.26% |
| 2026-09-20 | 115.1328 | -0.22% |
| 2026-09-19 | 115.3879 | -3.45% |
| 2026-09-18 | 119.5098 | +3.62% |
| 2026-09-17 | 115.3333 | +0.06% |
| 2026-09-16 | 115.268 | -0.43% |
| 2026-09-15 | 115.764 | -0.17% |
| 2026-09-14 | 115.9666 | +0.22% |
| 2026-09-13 | 115.7121 | +0.11% |
| 2026-09-12 | 115.5835 | +0.23% |
| Date | 1 XDR in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 115.3159 | -1.25% |
| 2026-09-10 | 116.7737 | -0.90% |
| 2026-09-09 | 117.8398 | -0.40% |
| 2026-09-08 | 118.3082 | -0.43% |
| 2026-09-07 | 118.821 | -0.01% |
| 2026-09-06 | 118.8322 | +0.87% |
| 2026-09-05 | 117.8129 | -0.82% |
| 2026-09-04 | 118.7821 | -0.52% |
| 2026-09-03 | 119.4074 | +0.49% |
| 2026-09-02 | 118.8303 | +0.56% |
| 2026-09-01 | 118.1628 | +0.23% |
| 2026-08-31 | 117.8913 | -0.15% |
| 2026-08-30 | 118.0665 | -0.15% |
| 2026-08-29 | 118.2467 | +0.92% |
| 2026-08-28 | 117.174 | — |
XDR to RUB conversion table
1 XDR115.5192 RUB
5 XDR577.596 RUB
10 XDR1,155.192 RUB
25 XDR2,887.9799 RUB
50 XDR5,775.9598 RUB
100 XDR11,551.92 RUB
500 XDR57,759.598 RUB
1,000 XDR115,519.2 RUB
5,000 XDR577,595.98 RUB
10,000 XDR1,155,192 RUB
Get the XDR/RUB rate in your app
One GET request returns the latest XDR → 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/XDR/RUB"fetch('https://rate-api.com/api/v1/pair/XDR/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XDR = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XDR/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XDR = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XDR/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 XDR = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "XDR",
"to": "RUB"
},
"rate": 115.5192,
"timestamp": 1790432079,
"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 XDRRussian Ruble → IMF Special Drawing Rights0.0086566Convert XDR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.