Convert CNY to GHS
Chinese Yuan → Ghanaian Cedi
1 CNY = 1.73043 GHS(1 GHS = 0.577891 CNY)
Currency converter
1 CNY =
1.7304 GHS
CNY to GHS: last 30 days
Over the last 30 days, 1 CNY traded between 1.6693 and 1.7304 GHS, averaging 1.704 GHS. The CNY/GHS rate is up 3.65% since 2026-08-29.
- 30-day high
- 1.7304
- 2026-09-26
- 30-day low
- 1.6693
- 2026-08-30
- 30-day average
- 1.704
- Days with data: 30
- 30-day change
- +3.65%
- since 2026-08-29
1.7304
1.66932026-08-29 → 2026-09-27
| Date | 1 CNY in GHS | Daily change |
|---|---|---|
| 2026-09-27 | 1.7304 | 0.00% |
| 2026-09-26 | 1.7304 | +0.19% |
| 2026-09-25 | 1.7272 | +0.08% |
| 2026-09-24 | 1.7258 | +0.21% |
| 2026-09-23 | 1.7221 | +0.20% |
| 2026-09-22 | 1.7187 | -0.07% |
| 2026-09-21 | 1.7198 | +0.03% |
| 2026-09-20 | 1.7193 | -0.02% |
| 2026-09-19 | 1.7195 | +0.07% |
| 2026-09-18 | 1.7183 | +0.25% |
| 2026-09-17 | 1.7141 | +0.22% |
| 2026-09-16 | 1.7103 | +0.14% |
| 2026-09-15 | 1.7079 | +0.05% |
| 2026-09-14 | 1.7071 | +0.11% |
| 2026-09-13 | 1.7052 | -0.17% |
| Date | 1 CNY in GHS | Daily change |
|---|---|---|
| 2026-09-12 | 1.7082 | -0.00% |
| 2026-09-11 | 1.7082 | +0.21% |
| 2026-09-10 | 1.7046 | +0.21% |
| 2026-09-09 | 1.701 | +0.12% |
| 2026-09-08 | 1.6988 | +0.17% |
| 2026-09-07 | 1.6959 | +0.05% |
| 2026-09-06 | 1.6951 | -0.08% |
| 2026-09-05 | 1.6964 | +0.21% |
| 2026-09-04 | 1.6928 | +0.72% |
| 2026-09-03 | 1.6807 | +0.22% |
| 2026-09-02 | 1.677 | +0.15% |
| 2026-09-01 | 1.6745 | +0.10% |
| 2026-08-31 | 1.6727 | +0.21% |
| 2026-08-30 | 1.6693 | -0.02% |
| 2026-08-29 | 1.6696 | — |
CNY to GHS conversion table
1 CNY1.7304 GHS
5 CNY8.6521 GHS
10 CNY17.3043 GHS
25 CNY43.2607 GHS
50 CNY86.5215 GHS
100 CNY173.043 GHS
500 CNY865.2147 GHS
1,000 CNY1,730.4295 GHS
5,000 CNY8,652.1474 GHS
10,000 CNY17,304.295 GHS
Get the CNY/GHS rate in your app
One GET request returns the latest CNY → GHS 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/GHS"fetch('https://rate-api.com/api/v1/pair/CNY/GHS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} GHS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/GHS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} GHS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/GHS');
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']} GHS\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "GHS"
},
"rate": 1.7304,
"timestamp": 1790490083,
"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
GHS to CNYGhanaian Cedi → Chinese Yuan0.57789Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.