Convert BBD to CNY
Barbadian Dollar → Chinese Yuan
1 BBD = 3.356617 CNY(1 CNY = 0.297919 BBD)
Currency converter
1 BBD =
3.3566 CNY
BBD to CNY: last 30 days
Over the last 30 days, 1 BBD traded between 3.3258 and 3.3612 CNY, averaging 3.3544 CNY. The BBD/CNY rate is down 0.11% since 2026-08-28.
- 30-day high
- 3.3612
- 2026-09-01
- 30-day low
- 3.3258
- 2026-09-18
- 30-day average
- 3.3544
- Days with data: 30
- 30-day change
- -0.11%
- since 2026-08-28
3.3612
3.32582026-08-28 → 2026-09-26
| Date | 1 BBD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 3.3566 | 0.00% |
| 2026-09-25 | 3.3566 | +0.01% |
| 2026-09-24 | 3.3563 | +0.08% |
| 2026-09-23 | 3.3537 | +0.11% |
| 2026-09-22 | 3.3501 | +0.07% |
| 2026-09-21 | 3.3477 | -0.03% |
| 2026-09-20 | 3.3488 | 0.00% |
| 2026-09-19 | 3.3488 | +0.69% |
| 2026-09-18 | 3.3258 | -0.83% |
| 2026-09-17 | 3.3538 | +0.01% |
| 2026-09-16 | 3.3536 | -0.07% |
| 2026-09-15 | 3.3558 | +0.05% |
| 2026-09-14 | 3.3542 | +0.00% |
| 2026-09-13 | 3.3541 | 0.00% |
| 2026-09-12 | 3.3541 | 0.00% |
| Date | 1 BBD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 3.3541 | +0.03% |
| 2026-09-10 | 3.3532 | -0.02% |
| 2026-09-09 | 3.3539 | -0.04% |
| 2026-09-08 | 3.3553 | -0.01% |
| 2026-09-07 | 3.3555 | +0.00% |
| 2026-09-06 | 3.3555 | 0.00% |
| 2026-09-05 | 3.3555 | 0.00% |
| 2026-09-04 | 3.3555 | -0.12% |
| 2026-09-03 | 3.3596 | -0.04% |
| 2026-09-02 | 3.3608 | -0.01% |
| 2026-09-01 | 3.3612 | +0.04% |
| 2026-08-31 | 3.3599 | -0.02% |
| 2026-08-30 | 3.3605 | 0.00% |
| 2026-08-29 | 3.3605 | 0.00% |
| 2026-08-28 | 3.3605 | — |
BBD to CNY conversion table
1 BBD3.3566 CNY
5 BBD16.7831 CNY
10 BBD33.5662 CNY
25 BBD83.9154 CNY
50 BBD167.8308 CNY
100 BBD335.6617 CNY
500 BBD1,678.3083 CNY
1,000 BBD3,356.6167 CNY
5,000 BBD16,783.083 CNY
10,000 BBD33,566.167 CNY
Get the BBD/CNY rate in your app
One GET request returns the latest BBD → CNY 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/CNY"fetch('https://rate-api.com/api/v1/pair/BBD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BBD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BBD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BBD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BBD/CNY');
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']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "BBD",
"to": "CNY"
},
"rate": 3.3566,
"timestamp": 1790432046,
"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
CNY to BBDChinese Yuan → Barbadian Dollar0.29792Convert BBD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.