Convert SGD to RUB
Singapore Dollar → Russian Ruble
1 SGD = 66.566229 RUB(1 RUB = 0.0150226 SGD)
Currency converter
1 SGD =
66.5662 RUB
SGD to RUB: last 30 days
Over the last 30 days, 1 SGD traded between 65.7082 and 68.8573 RUB, averaging 67.0112 RUB. The SGD/RUB rate is down 0.99% since 2026-08-28.
- 30-day high
- 68.8573
- 2026-09-03
- 30-day low
- 65.7082
- 2026-09-22
- 30-day average
- 67.0112
- Days with data: 30
- 30-day change
- -0.99%
- since 2026-08-28
68.8573
65.70822026-08-28 → 2026-09-26
| Date | 1 SGD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 66.5662 | 0.00% |
| 2026-09-25 | 66.5662 | +0.42% |
| 2026-09-24 | 66.285 | +0.52% |
| 2026-09-23 | 65.9436 | +0.36% |
| 2026-09-22 | 65.7082 | -0.48% |
| 2026-09-21 | 66.0221 | +0.38% |
| 2026-09-20 | 65.7736 | -0.37% |
| 2026-09-19 | 66.0176 | -0.12% |
| 2026-09-18 | 66.0979 | +0.08% |
| 2026-09-17 | 66.0465 | -0.12% |
| 2026-09-16 | 66.1257 | -0.43% |
| 2026-09-15 | 66.4137 | -0.18% |
| 2026-09-14 | 66.536 | +0.09% |
| 2026-09-13 | 66.4757 | +0.11% |
| 2026-09-12 | 66.4019 | +0.27% |
| Date | 1 SGD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 66.2199 | -1.33% |
| 2026-09-10 | 67.1159 | -1.23% |
| 2026-09-09 | 67.9497 | -0.26% |
| 2026-09-08 | 68.1286 | -0.40% |
| 2026-09-07 | 68.403 | +0.12% |
| 2026-09-06 | 68.3233 | +0.86% |
| 2026-09-05 | 67.7427 | -0.96% |
| 2026-09-04 | 68.402 | -0.66% |
| 2026-09-03 | 68.8573 | +0.97% |
| 2026-09-02 | 68.1941 | +0.60% |
| 2026-09-01 | 67.7865 | +0.35% |
| 2026-08-31 | 67.5496 | -0.17% |
| 2026-08-30 | 67.6624 | -0.19% |
| 2026-08-29 | 67.7885 | +0.83% |
| 2026-08-28 | 67.2311 | — |
SGD to RUB conversion table
1 SGD66.5662 RUB
5 SGD332.8311 RUB
10 SGD665.6623 RUB
25 SGD1,664.1557 RUB
50 SGD3,328.3114 RUB
100 SGD6,656.6229 RUB
500 SGD33,283.114 RUB
1,000 SGD66,566.229 RUB
5,000 SGD332,831.14 RUB
10,000 SGD665,662.29 RUB
Get the SGD/RUB rate in your app
One GET request returns the latest SGD → 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/SGD/RUB"fetch('https://rate-api.com/api/v1/pair/SGD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SGD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SGD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SGD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SGD/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SGD = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "SGD",
"to": "RUB"
},
"rate": 66.5662,
"timestamp": 1790432089,
"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 SGDRussian Ruble → Singapore Dollar0.015023Convert SGD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.