Convert KYD to CNY
Cayman Islands Dollar → Chinese Yuan
1 KYD = 8.055883 CNY(1 CNY = 0.124133 KYD)
Currency converter
1 KYD =
8.0559 CNY
KYD to CNY: last 30 days
Over the last 30 days, 1 KYD traded between 8.0377 and 8.1894 CNY, averaging 8.0834 CNY. The KYD/CNY rate is down 0.35% since 2026-08-28.
- 30-day high
- 8.1894
- 2026-08-30
- 30-day low
- 8.0377
- 2026-09-18
- 30-day average
- 8.0834
- Days with data: 30
- 30-day change
- -0.35%
- since 2026-08-28
8.1894
8.03772026-08-28 → 2026-09-26
| Date | 1 KYD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 8.0559 | 0.00% |
| 2026-09-25 | 8.0559 | +0.01% |
| 2026-09-24 | 8.0551 | +0.08% |
| 2026-09-23 | 8.0489 | -0.40% |
| 2026-09-22 | 8.0808 | +0.29% |
| 2026-09-21 | 8.0574 | -1.22% |
| 2026-09-20 | 8.1571 | +1.39% |
| 2026-09-19 | 8.0452 | +0.09% |
| 2026-09-18 | 8.0377 | -0.51% |
| 2026-09-17 | 8.079 | +0.18% |
| 2026-09-16 | 8.0645 | -0.12% |
| 2026-09-15 | 8.0745 | +0.09% |
| 2026-09-14 | 8.0672 | -1.23% |
| 2026-09-13 | 8.1673 | +1.31% |
| 2026-09-12 | 8.0618 | -0.06% |
| Date | 1 KYD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 8.0663 | -0.27% |
| 2026-09-10 | 8.0879 | +0.28% |
| 2026-09-09 | 8.0653 | -0.12% |
| 2026-09-08 | 8.0749 | +0.07% |
| 2026-09-07 | 8.0696 | -1.38% |
| 2026-09-06 | 8.1829 | +1.46% |
| 2026-09-05 | 8.0648 | -0.36% |
| 2026-09-04 | 8.0938 | +0.11% |
| 2026-09-03 | 8.0847 | +0.02% |
| 2026-09-02 | 8.083 | -0.02% |
| 2026-09-01 | 8.0844 | -0.05% |
| 2026-08-31 | 8.0885 | -1.23% |
| 2026-08-30 | 8.1894 | +1.43% |
| 2026-08-29 | 8.0741 | -0.13% |
| 2026-08-28 | 8.0844 | — |
KYD to CNY conversion table
1 KYD8.0559 CNY
5 KYD40.2794 CNY
10 KYD80.5588 CNY
25 KYD201.3971 CNY
50 KYD402.7942 CNY
100 KYD805.5883 CNY
500 KYD4,027.9416 CNY
1,000 KYD8,055.8833 CNY
5,000 KYD40,279.416 CNY
10,000 KYD80,558.833 CNY
Get the KYD/CNY rate in your app
One GET request returns the latest KYD → 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/KYD/CNY"fetch('https://rate-api.com/api/v1/pair/KYD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 KYD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/KYD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 KYD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/KYD/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 KYD = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "KYD",
"to": "CNY"
},
"rate": 8.0559,
"timestamp": 1790432130,
"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 KYDChinese Yuan → Cayman Islands Dollar0.12413Convert KYD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.