Convert CNY to TTD
Chinese Yuan → Trinidad & Tobago Dollar
1 CNY = 1.012874 TTD(1 TTD = 0.98729 CNY)
Currency converter
1 CNY =
1.0129 TTD
CNY to TTD: last 30 days
Over the last 30 days, 1 CNY traded between 1.004 and 1.0145 TTD, averaging 1.0105 TTD. The CNY/TTD rate is up 0.36% since 2026-08-28.
- 30-day high
- 1.0145
- 2026-08-31
- 30-day low
- 1.004
- 2026-08-30
- 30-day average
- 1.0105
- Days with data: 30
- 30-day change
- +0.36%
- since 2026-08-28
1.0145
1.0042026-08-28 → 2026-09-26
| Date | 1 CNY in TTD | Daily change |
|---|---|---|
| 2026-09-26 | 1.0129 | 0.00% |
| 2026-09-25 | 1.0129 | -0.07% |
| 2026-09-24 | 1.0136 | +0.04% |
| 2026-09-23 | 1.0132 | -0.07% |
| 2026-09-22 | 1.0139 | +0.00% |
| 2026-09-21 | 1.0139 | +0.44% |
| 2026-09-20 | 1.0095 | -0.47% |
| 2026-09-19 | 1.0143 | +0.07% |
| 2026-09-18 | 1.0135 | -0.02% |
| 2026-09-17 | 1.0137 | +0.25% |
| 2026-09-16 | 1.0111 | +0.02% |
| 2026-09-15 | 1.011 | -0.10% |
| 2026-09-14 | 1.012 | +0.49% |
| 2026-09-13 | 1.0071 | -0.45% |
| 2026-09-12 | 1.0117 | -0.05% |
| Date | 1 CNY in TTD | Daily change |
|---|---|---|
| 2026-09-11 | 1.0122 | -0.01% |
| 2026-09-10 | 1.0122 | +0.25% |
| 2026-09-09 | 1.0097 | +0.05% |
| 2026-09-08 | 1.0092 | -0.13% |
| 2026-09-07 | 1.0105 | +0.50% |
| 2026-09-06 | 1.0054 | -0.49% |
| 2026-09-05 | 1.0104 | +0.26% |
| 2026-09-04 | 1.0078 | +0.09% |
| 2026-09-03 | 1.0068 | -0.17% |
| 2026-09-02 | 1.0086 | +0.38% |
| 2026-09-01 | 1.0048 | -0.95% |
| 2026-08-31 | 1.0145 | +1.05% |
| 2026-08-30 | 1.004 | -0.17% |
| 2026-08-29 | 1.0056 | -0.36% |
| 2026-08-28 | 1.0093 | — |
CNY to TTD conversion table
1 CNY1.0129 TTD
5 CNY5.0644 TTD
10 CNY10.1287 TTD
25 CNY25.3218 TTD
50 CNY50.6437 TTD
100 CNY101.2874 TTD
500 CNY506.4368 TTD
1,000 CNY1,012.8736 TTD
5,000 CNY5,064.3682 TTD
10,000 CNY10,128.736 TTD
Get the CNY/TTD rate in your app
One GET request returns the latest CNY → TTD 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/TTD"fetch('https://rate-api.com/api/v1/pair/CNY/TTD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} TTD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/TTD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} TTD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/TTD');
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']} TTD\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "TTD"
},
"rate": 1.0129,
"timestamp": 1790429359,
"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
TTD to CNYTrinidad & Tobago Dollar → Chinese Yuan0.98729Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.