Convert DOP to CNY
Dominican Peso → Chinese Yuan
1 DOP = 0.113002 CNY(1 CNY = 8.849366 DOP)
Currency converter
1 DOP =
0.113 CNY
DOP to CNY: last 30 days
Over the last 30 days, 1 DOP traded between 0.11249 and 0.11484 CNY, averaging 0.11369 CNY. The DOP/CNY rate is down 1.16% since 2026-08-28.
- 30-day high
- 0.11484
- 2026-08-29
- 30-day low
- 0.11249
- 2026-09-24
- 30-day average
- 0.11369
- Days with data: 30
- 30-day change
- -1.16%
- since 2026-08-28
0.11484
0.112492026-08-28 → 2026-09-26
| Date | 1 DOP in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.113 | 0.00% |
| 2026-09-25 | 0.113 | +0.46% |
| 2026-09-24 | 0.11249 | -0.20% |
| 2026-09-23 | 0.11271 | -0.67% |
| 2026-09-22 | 0.11348 | -0.24% |
| 2026-09-21 | 0.11374 | +0.27% |
| 2026-09-20 | 0.11344 | -0.02% |
| 2026-09-19 | 0.11345 | +0.32% |
| 2026-09-18 | 0.11309 | -1.14% |
| 2026-09-17 | 0.1144 | +0.80% |
| 2026-09-16 | 0.11349 | -0.31% |
| 2026-09-15 | 0.11383 | +0.26% |
| 2026-09-14 | 0.11355 | +0.01% |
| 2026-09-13 | 0.11353 | +0.01% |
| 2026-09-12 | 0.11352 | -0.39% |
| Date | 1 DOP in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.11397 | -0.13% |
| 2026-09-10 | 0.11412 | +0.22% |
| 2026-09-09 | 0.11387 | +0.44% |
| 2026-09-08 | 0.11337 | +0.02% |
| 2026-09-07 | 0.11335 | -0.39% |
| 2026-09-06 | 0.1138 | +0.37% |
| 2026-09-05 | 0.11338 | -0.00% |
| 2026-09-04 | 0.11338 | -1.01% |
| 2026-09-03 | 0.11453 | +0.32% |
| 2026-09-02 | 0.11417 | +0.07% |
| 2026-09-01 | 0.11409 | -0.07% |
| 2026-08-31 | 0.11417 | -0.29% |
| 2026-08-30 | 0.1145 | -0.29% |
| 2026-08-29 | 0.11484 | +0.45% |
| 2026-08-28 | 0.11432 | — |
DOP to CNY conversion table
1 DOP0.113 CNY
5 DOP0.56501 CNY
10 DOP1.13 CNY
25 DOP2.8251 CNY
50 DOP5.6501 CNY
100 DOP11.3002 CNY
500 DOP56.5012 CNY
1,000 DOP113.0025 CNY
5,000 DOP565.0123 CNY
10,000 DOP1,130.0245 CNY
Get the DOP/CNY rate in your app
One GET request returns the latest DOP → 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/DOP/CNY"fetch('https://rate-api.com/api/v1/pair/DOP/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DOP = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DOP/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DOP = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DOP/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 DOP = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "DOP",
"to": "CNY"
},
"rate": 0.113,
"timestamp": 1790435077,
"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 DOPChinese Yuan → Dominican Peso8.8494Convert DOP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.