Convert SBD to RUB
Solomon Islands Dollar → Russian Ruble
1 SBD = 10.576649 RUB(1 RUB = 0.0945479 SBD)
Currency converter
1 SBD =
10.5766 RUB
SBD to RUB: last 30 days
Over the last 30 days, 1 SBD traded between 10.4472 and 10.9059 RUB, averaging 10.6501 RUB. The SBD/RUB rate is down 1.03% since 2026-08-28.
- 30-day high
- 10.9059
- 2026-09-03
- 30-day low
- 10.4472
- 2026-09-22
- 30-day average
- 10.6501
- Days with data: 30
- 30-day change
- -1.03%
- since 2026-08-28
10.9059
10.44722026-08-28 → 2026-09-26
| Date | 1 SBD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 10.5766 | 0.00% |
| 2026-09-25 | 10.5766 | +0.07% |
| 2026-09-24 | 10.5697 | +0.27% |
| 2026-09-23 | 10.5407 | +0.90% |
| 2026-09-22 | 10.4472 | -0.76% |
| 2026-09-21 | 10.5272 | +0.36% |
| 2026-09-20 | 10.4894 | -0.37% |
| 2026-09-19 | 10.5283 | -0.32% |
| 2026-09-18 | 10.5618 | +0.28% |
| 2026-09-17 | 10.5325 | +0.34% |
| 2026-09-16 | 10.4971 | -0.44% |
| 2026-09-15 | 10.5434 | -0.15% |
| 2026-09-14 | 10.5593 | +0.39% |
| 2026-09-13 | 10.5187 | +0.11% |
| 2026-09-12 | 10.5071 | -0.18% |
| Date | 1 SBD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 10.5257 | -1.28% |
| 2026-09-10 | 10.6624 | -0.94% |
| 2026-09-09 | 10.7634 | -0.51% |
| 2026-09-08 | 10.8184 | -0.43% |
| 2026-09-07 | 10.8646 | +0.41% |
| 2026-09-06 | 10.8198 | +0.86% |
| 2026-09-05 | 10.7279 | -0.99% |
| 2026-09-04 | 10.8354 | -0.65% |
| 2026-09-03 | 10.9059 | +0.50% |
| 2026-09-02 | 10.8514 | +0.60% |
| 2026-09-01 | 10.7865 | +0.31% |
| 2026-08-31 | 10.7529 | +0.00% |
| 2026-08-30 | 10.7524 | -0.19% |
| 2026-08-29 | 10.7728 | +0.81% |
| 2026-08-28 | 10.6864 | — |
SBD to RUB conversion table
1 SBD10.5766 RUB
5 SBD52.8832 RUB
10 SBD105.7665 RUB
25 SBD264.4162 RUB
50 SBD528.8325 RUB
100 SBD1,057.6649 RUB
500 SBD5,288.3245 RUB
1,000 SBD10,576.649 RUB
5,000 SBD52,883.245 RUB
10,000 SBD105,766.49 RUB
Get the SBD/RUB rate in your app
One GET request returns the latest SBD → 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/SBD/RUB"fetch('https://rate-api.com/api/v1/pair/SBD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SBD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SBD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SBD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SBD/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SBD = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "SBD",
"to": "RUB"
},
"rate": 10.5766,
"timestamp": 1790432059,
"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 SBDRussian Ruble → Solomon Islands Dollar0.094548Convert SBD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.