Convert SGD to CNY
Singapore Dollar → Chinese Yuan
1 SGD = 5.256541 CNY(1 CNY = 0.190239 SGD)
Currency converter
1 SGD =
5.2565 CNY
SGD to CNY: last 30 days
Over the last 30 days, 1 SGD traded between 5.239 and 5.3093 CNY, averaging 5.276 CNY. The SGD/CNY rate is down 0.57% since 2026-08-28.
- 30-day high
- 5.3093
- 2026-09-09
- 30-day low
- 5.239
- 2026-09-18
- 30-day average
- 5.276
- Days with data: 30
- 30-day change
- -0.57%
- since 2026-08-28
5.3093
5.2392026-08-28 → 2026-09-26
| Date | 1 SGD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 5.2565 | 0.00% |
| 2026-09-25 | 5.2565 | +0.23% |
| 2026-09-24 | 5.2445 | -0.05% |
| 2026-09-23 | 5.247 | -0.18% |
| 2026-09-22 | 5.2562 | +0.08% |
| 2026-09-21 | 5.2521 | +0.25% |
| 2026-09-20 | 5.239 | 0.00% |
| 2026-09-19 | 5.239 | 0.00% |
| 2026-09-18 | 5.239 | -0.39% |
| 2026-09-17 | 5.2595 | -0.15% |
| 2026-09-16 | 5.2675 | -0.13% |
| 2026-09-15 | 5.2743 | -0.11% |
| 2026-09-14 | 5.2801 | -0.20% |
| 2026-09-13 | 5.2908 | 0.00% |
| 2026-09-12 | 5.2908 | 0.00% |
| Date | 1 SGD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 5.2908 | -0.09% |
| 2026-09-10 | 5.2956 | -0.26% |
| 2026-09-09 | 5.3093 | +0.15% |
| 2026-09-08 | 5.3014 | +0.02% |
| 2026-09-07 | 5.3001 | +0.06% |
| 2026-09-06 | 5.2971 | 0.00% |
| 2026-09-05 | 5.2971 | 0.00% |
| 2026-09-04 | 5.2971 | -0.05% |
| 2026-09-03 | 5.2998 | +0.39% |
| 2026-09-02 | 5.2792 | +0.00% |
| 2026-09-01 | 5.279 | -0.02% |
| 2026-08-31 | 5.2799 | -0.13% |
| 2026-08-30 | 5.2866 | 0.00% |
| 2026-08-29 | 5.2866 | 0.00% |
| 2026-08-28 | 5.2866 | — |
SGD to CNY conversion table
1 SGD5.2565 CNY
5 SGD26.2827 CNY
10 SGD52.5654 CNY
25 SGD131.4135 CNY
50 SGD262.827 CNY
100 SGD525.6541 CNY
500 SGD2,628.2703 CNY
1,000 SGD5,256.5405 CNY
5,000 SGD26,282.703 CNY
10,000 SGD52,565.405 CNY
Get the SGD/CNY rate in your app
One GET request returns the latest SGD → 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/SGD/CNY"fetch('https://rate-api.com/api/v1/pair/SGD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SGD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SGD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SGD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SGD/CNY');
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']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "SGD",
"to": "CNY"
},
"rate": 5.2565,
"timestamp": 1790435211,
"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 SGDChinese Yuan → Singapore Dollar0.19024Convert SGD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.