Convert CNY to DOP
Chinese Yuan → Dominican Peso
1 CNY = 8.849366 DOP(1 DOP = 0.113002 CNY)
Currency converter
1 CNY =
8.8494 DOP
CNY to DOP: last 30 days
Over the last 30 days, 1 CNY traded between 8.7079 and 8.8898 DOP, averaging 8.7963 DOP. The CNY/DOP rate is up 1.17% since 2026-08-28.
- 30-day high
- 8.8898
- 2026-09-24
- 30-day low
- 8.7079
- 2026-08-29
- 30-day average
- 8.7963
- Days with data: 30
- 30-day change
- +1.17%
- since 2026-08-28
8.8898
8.70792026-08-28 → 2026-09-26
| Date | 1 CNY in DOP | Daily change |
|---|---|---|
| 2026-09-26 | 8.8494 | 0.00% |
| 2026-09-25 | 8.8494 | -0.46% |
| 2026-09-24 | 8.8898 | +0.20% |
| 2026-09-23 | 8.8721 | +0.68% |
| 2026-09-22 | 8.8125 | +0.24% |
| 2026-09-21 | 8.7918 | -0.27% |
| 2026-09-20 | 8.8155 | +0.02% |
| 2026-09-19 | 8.8141 | -0.32% |
| 2026-09-18 | 8.8427 | +1.16% |
| 2026-09-17 | 8.7414 | -0.80% |
| 2026-09-16 | 8.8115 | +0.31% |
| 2026-09-15 | 8.7847 | -0.25% |
| 2026-09-14 | 8.8071 | -0.01% |
| 2026-09-13 | 8.808 | -0.01% |
| 2026-09-12 | 8.8086 | +0.39% |
| Date | 1 CNY in DOP | Daily change |
|---|---|---|
| 2026-09-11 | 8.7743 | +0.13% |
| 2026-09-10 | 8.7629 | -0.22% |
| 2026-09-09 | 8.7822 | -0.43% |
| 2026-09-08 | 8.8204 | -0.02% |
| 2026-09-07 | 8.8221 | +0.39% |
| 2026-09-06 | 8.7876 | -0.37% |
| 2026-09-05 | 8.82 | +0.00% |
| 2026-09-04 | 8.8198 | +1.02% |
| 2026-09-03 | 8.731 | -0.32% |
| 2026-09-02 | 8.7589 | -0.07% |
| 2026-09-01 | 8.7652 | +0.07% |
| 2026-08-31 | 8.7587 | +0.29% |
| 2026-08-30 | 8.7335 | +0.29% |
| 2026-08-29 | 8.7079 | -0.45% |
| 2026-08-28 | 8.7471 | — |
CNY to DOP conversion table
1 CNY8.8494 DOP
5 CNY44.2468 DOP
10 CNY88.4937 DOP
25 CNY221.2341 DOP
50 CNY442.4683 DOP
100 CNY884.9366 DOP
500 CNY4,424.6828 DOP
1,000 CNY8,849.3656 DOP
5,000 CNY44,246.828 DOP
10,000 CNY88,493.656 DOP
Get the CNY/DOP rate in your app
One GET request returns the latest CNY → DOP 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/DOP"fetch('https://rate-api.com/api/v1/pair/CNY/DOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} DOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/DOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} DOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/DOP');
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']} DOP\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "DOP"
},
"rate": 8.8494,
"timestamp": 1790429362,
"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
DOP to CNYDominican Peso → Chinese Yuan0.113Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.