Convert BBD to RUB
Barbadian Dollar → Russian Ruble
1 BBD = 42.506533 RUB(1 RUB = 0.0235258 BBD)
Currency converter
1 BBD =
42.5065 RUB
BBD to RUB: last 30 days
Over the last 30 days, 1 BBD traded between 41.8791 and 43.6486 RUB, averaging 42.6035 RUB. The BBD/RUB rate is down 0.54% since 2026-08-28.
- 30-day high
- 43.6486
- 2026-09-03
- 30-day low
- 41.8791
- 2026-09-22
- 30-day average
- 42.6035
- Days with data: 30
- 30-day change
- -0.54%
- since 2026-08-28
43.6486
41.87912026-08-28 → 2026-09-26
| Date | 1 BBD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 42.5065 | 0.00% |
| 2026-09-25 | 42.5065 | +0.20% |
| 2026-09-24 | 42.4202 | +0.64% |
| 2026-09-23 | 42.1488 | +0.64% |
| 2026-09-22 | 41.8791 | -0.48% |
| 2026-09-21 | 42.0825 | +0.10% |
| 2026-09-20 | 42.0425 | -0.37% |
| 2026-09-19 | 42.1984 | +0.57% |
| 2026-09-18 | 41.9592 | -0.37% |
| 2026-09-17 | 42.1145 | +0.04% |
| 2026-09-16 | 42.0989 | -0.37% |
| 2026-09-15 | 42.2557 | -0.03% |
| 2026-09-14 | 42.267 | +0.30% |
| 2026-09-13 | 42.1422 | +0.11% |
| 2026-09-12 | 42.0955 | +0.27% |
| Date | 1 BBD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 41.9801 | -1.22% |
| 2026-09-10 | 42.4978 | -0.99% |
| 2026-09-09 | 42.9239 | -0.45% |
| 2026-09-08 | 43.1186 | -0.43% |
| 2026-09-07 | 43.3059 | +0.06% |
| 2026-09-06 | 43.2794 | +0.86% |
| 2026-09-05 | 42.9116 | -0.96% |
| 2026-09-04 | 43.3293 | -0.73% |
| 2026-09-03 | 43.6486 | +0.54% |
| 2026-09-02 | 43.4124 | +0.59% |
| 2026-09-01 | 43.1597 | +0.41% |
| 2026-08-31 | 42.9852 | -0.06% |
| 2026-08-30 | 43.0096 | -0.19% |
| 2026-08-29 | 43.0898 | +0.83% |
| 2026-08-28 | 42.7354 | — |
BBD to RUB conversion table
1 BBD42.5065 RUB
5 BBD212.5327 RUB
10 BBD425.0653 RUB
25 BBD1,062.6633 RUB
50 BBD2,125.3266 RUB
100 BBD4,250.6533 RUB
500 BBD21,253.266 RUB
1,000 BBD42,506.533 RUB
5,000 BBD212,532.66 RUB
10,000 BBD425,065.33 RUB
Get the BBD/RUB rate in your app
One GET request returns the latest BBD → 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/BBD/RUB"fetch('https://rate-api.com/api/v1/pair/BBD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BBD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BBD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BBD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BBD/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BBD = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "BBD",
"to": "RUB"
},
"rate": 42.5065,
"timestamp": 1790435052,
"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 BBDRussian Ruble → Barbadian Dollar0.023526Convert BBD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.