Convert XCD to RUB
East Caribbean Dollar → Russian Ruble
1 XCD = 31.486321 RUB(1 RUB = 0.0317598 XCD)
Currency converter
1 XCD =
31.4863 RUB
XCD to RUB: last 30 days
Over the last 30 days, 1 XCD traded between 30.9368 and 32.2477 RUB, averaging 31.5155 RUB. The XCD/RUB rate is down 0.27% since 2026-08-28.
- 30-day high
- 32.2477
- 2026-09-03
- 30-day low
- 30.9368
- 2026-09-22
- 30-day average
- 31.5155
- Days with data: 30
- 30-day change
- -0.27%
- since 2026-08-28
32.2477
30.93682026-08-28 → 2026-09-26
| Date | 1 XCD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 31.4863 | 0.00% |
| 2026-09-25 | 31.4863 | +0.20% |
| 2026-09-24 | 31.4223 | +0.64% |
| 2026-09-23 | 31.2213 | +0.92% |
| 2026-09-22 | 30.9368 | -0.49% |
| 2026-09-21 | 31.0899 | -0.14% |
| 2026-09-20 | 31.1348 | -0.30% |
| 2026-09-19 | 31.2296 | -0.12% |
| 2026-09-18 | 31.2666 | +0.41% |
| 2026-09-17 | 31.1403 | +0.10% |
| 2026-09-16 | 31.1082 | -0.35% |
| 2026-09-15 | 31.2178 | -0.02% |
| 2026-09-14 | 31.225 | +0.03% |
| 2026-09-13 | 31.2152 | +0.20% |
| 2026-09-12 | 31.1532 | +0.43% |
| Date | 1 XCD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 31.0188 | -1.23% |
| 2026-09-10 | 31.4045 | -0.97% |
| 2026-09-09 | 31.711 | -0.45% |
| 2026-09-08 | 31.8554 | -0.40% |
| 2026-09-07 | 31.9847 | -0.21% |
| 2026-09-06 | 32.0515 | +0.93% |
| 2026-09-05 | 31.7575 | -0.83% |
| 2026-09-04 | 32.0224 | -0.70% |
| 2026-09-03 | 32.2477 | +0.55% |
| 2026-09-02 | 32.0709 | +0.59% |
| 2026-09-01 | 31.8837 | +0.21% |
| 2026-08-31 | 31.8163 | -0.10% |
| 2026-08-30 | 31.8483 | -0.13% |
| 2026-08-29 | 31.889 | +1.01% |
| 2026-08-28 | 31.5701 | — |
XCD to RUB conversion table
1 XCD31.4863 RUB
5 XCD157.4316 RUB
10 XCD314.8632 RUB
25 XCD787.158 RUB
50 XCD1,574.316 RUB
100 XCD3,148.6321 RUB
500 XCD15,743.16 RUB
1,000 XCD31,486.321 RUB
5,000 XCD157,431.6 RUB
10,000 XCD314,863.21 RUB
Get the XCD/RUB rate in your app
One GET request returns the latest XCD → 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/XCD/RUB"fetch('https://rate-api.com/api/v1/pair/XCD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XCD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XCD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XCD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XCD/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 XCD = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "XCD",
"to": "RUB"
},
"rate": 31.4863,
"timestamp": 1790432042,
"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 XCDRussian Ruble → East Caribbean Dollar0.03176Convert XCD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.