Convert CNY to SGD
Chinese Yuan → Singapore Dollar
1 CNY = 0.190239 SGD(1 SGD = 5.256541 CNY)
Currency converter
1 CNY =
0.19024 SGD
CNY to SGD: last 30 days
Over the last 30 days, 1 CNY traded between 0.18835 and 0.19087 SGD, averaging 0.18958 SGD. The CNY/SGD rate is up 0.57% since 2026-08-29.
- 30-day high
- 0.19087
- 2026-09-18
- 30-day low
- 0.18835
- 2026-09-09
- 30-day average
- 0.18958
- Days with data: 30
- 30-day change
- +0.57%
- since 2026-08-29
0.19087
0.188352026-08-29 → 2026-09-27
| Date | 1 CNY in SGD | Daily change |
|---|---|---|
| 2026-09-27 | 0.19024 | 0.00% |
| 2026-09-26 | 0.19024 | 0.00% |
| 2026-09-25 | 0.19024 | -0.23% |
| 2026-09-24 | 0.19068 | +0.05% |
| 2026-09-23 | 0.19059 | +0.18% |
| 2026-09-22 | 0.19025 | -0.08% |
| 2026-09-21 | 0.1904 | -0.25% |
| 2026-09-20 | 0.19087 | 0.00% |
| 2026-09-19 | 0.19087 | 0.00% |
| 2026-09-18 | 0.19087 | +0.39% |
| 2026-09-17 | 0.19013 | +0.15% |
| 2026-09-16 | 0.18984 | +0.13% |
| 2026-09-15 | 0.1896 | +0.11% |
| 2026-09-14 | 0.18939 | +0.20% |
| 2026-09-13 | 0.18901 | 0.00% |
| Date | 1 CNY in SGD | Daily change |
|---|---|---|
| 2026-09-12 | 0.18901 | 0.00% |
| 2026-09-11 | 0.18901 | +0.09% |
| 2026-09-10 | 0.18884 | +0.26% |
| 2026-09-09 | 0.18835 | -0.15% |
| 2026-09-08 | 0.18863 | -0.02% |
| 2026-09-07 | 0.18868 | -0.06% |
| 2026-09-06 | 0.18878 | 0.00% |
| 2026-09-05 | 0.18878 | 0.00% |
| 2026-09-04 | 0.18878 | +0.05% |
| 2026-09-03 | 0.18869 | -0.39% |
| 2026-09-02 | 0.18942 | -0.00% |
| 2026-09-01 | 0.18943 | +0.02% |
| 2026-08-31 | 0.1894 | +0.13% |
| 2026-08-30 | 0.18916 | 0.00% |
| 2026-08-29 | 0.18916 | — |
CNY to SGD conversion table
1 CNY0.19024 SGD
5 CNY0.9512 SGD
10 CNY1.9024 SGD
25 CNY4.756 SGD
50 CNY9.512 SGD
100 CNY19.0239 SGD
500 CNY95.1196 SGD
1,000 CNY190.2392 SGD
5,000 CNY951.1959 SGD
10,000 CNY1,902.3919 SGD
Get the CNY/SGD rate in your app
One GET request returns the latest CNY → SGD 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/CNY/SGD"fetch('https://rate-api.com/api/v1/pair/CNY/SGD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} SGD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/SGD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} SGD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/SGD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CNY = {$data['rate']} SGD\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "SGD"
},
"rate": 0.1902,
"timestamp": 1790470811,
"date": "2026-09-27"
}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
SGD to CNYSingapore Dollar → Chinese Yuan5.2565Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.