Convert SBD to CAD
Solomon Islands Dollar → Canadian Dollar
1 SBD = 0.175953 CAD(1 CAD = 5.683333 SBD)
Currency converter
1 SBD =
0.17595 CAD
SBD to CAD: last 30 days
Over the last 30 days, 1 SBD traded between 0.1723 and 0.17617 CAD, averaging 0.17392 CAD. The SBD/CAD rate is up 1.58% since 2026-08-28.
- 30-day high
- 0.17617
- 2026-09-23
- 30-day low
- 0.1723
- 2026-09-03
- 30-day average
- 0.17392
- Days with data: 30
- 30-day change
- +1.58%
- since 2026-08-28
0.17617
0.17232026-08-28 → 2026-09-26
| Date | 1 SBD in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.17595 | 0.00% |
| 2026-09-25 | 0.17595 | +0.04% |
| 2026-09-24 | 0.17588 | -0.17% |
| 2026-09-23 | 0.17617 | +0.57% |
| 2026-09-22 | 0.17517 | +0.01% |
| 2026-09-21 | 0.17516 | +0.22% |
| 2026-09-20 | 0.17477 | 0.00% |
| 2026-09-19 | 0.17477 | -0.20% |
| 2026-09-18 | 0.17511 | +0.06% |
| 2026-09-17 | 0.175 | +0.70% |
| 2026-09-16 | 0.17378 | +0.07% |
| 2026-09-15 | 0.17366 | +0.11% |
| 2026-09-14 | 0.17347 | +0.30% |
| 2026-09-13 | 0.17295 | 0.00% |
| 2026-09-12 | 0.17295 | -0.45% |
| Date | 1 SBD in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.17373 | +0.24% |
| 2026-09-10 | 0.17332 | +0.40% |
| 2026-09-09 | 0.17262 | -0.32% |
| 2026-09-08 | 0.17318 | -0.10% |
| 2026-09-07 | 0.17336 | +0.50% |
| 2026-09-06 | 0.1725 | -0.00% |
| 2026-09-05 | 0.1725 | -0.03% |
| 2026-09-04 | 0.17255 | +0.14% |
| 2026-09-03 | 0.1723 | -1.00% |
| 2026-09-02 | 0.17404 | +0.28% |
| 2026-09-01 | 0.17355 | -0.08% |
| 2026-08-31 | 0.17368 | +0.29% |
| 2026-08-30 | 0.17318 | -0.00% |
| 2026-08-29 | 0.17318 | -0.02% |
| 2026-08-28 | 0.17322 | — |
SBD to CAD conversion table
1 SBD0.17595 CAD
5 SBD0.87977 CAD
10 SBD1.7595 CAD
25 SBD4.3988 CAD
50 SBD8.7977 CAD
100 SBD17.5953 CAD
500 SBD87.9765 CAD
1,000 SBD175.9531 CAD
5,000 SBD879.7654 CAD
10,000 SBD1,759.5308 CAD
Get the SBD/CAD rate in your app
One GET request returns the latest SBD → CAD 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/CAD"fetch('https://rate-api.com/api/v1/pair/SBD/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SBD = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SBD/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SBD = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SBD/CAD');
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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "SBD",
"to": "CAD"
},
"rate": 0.176,
"timestamp": 1790437535,
"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
CAD to SBDCanadian Dollar → Solomon Islands Dollar5.6833Convert SBD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.