Convert CHF to DOP
Swiss Franc → Dominican Peso
1 CHF = 71.723429 DOP(1 DOP = 0.0139424 CHF)
Currency converter
1 CHF =
71.7234 DOP
CHF to DOP: last 30 days
Over the last 30 days, 1 CHF traded between 71.1145 and 73.1618 DOP, averaging 72.3668 DOP. The CHF/DOP rate is down 1.88% since 2026-08-28.
- 30-day high
- 73.1618
- 2026-09-07
- 30-day low
- 71.1145
- 2026-09-17
- 30-day average
- 72.3668
- Days with data: 30
- 30-day change
- -1.88%
- since 2026-08-28
73.1618
71.11452026-08-28 → 2026-09-26
| Date | 1 CHF in DOP | Daily change |
|---|---|---|
| 2026-09-26 | 71.7234 | 0.00% |
| 2026-09-25 | 71.7234 | -0.51% |
| 2026-09-24 | 72.0917 | -0.31% |
| 2026-09-23 | 72.317 | +0.36% |
| 2026-09-22 | 72.0566 | +0.55% |
| 2026-09-21 | 71.6627 | +0.21% |
| 2026-09-20 | 71.5105 | +0.02% |
| 2026-09-19 | 71.4992 | -0.32% |
| 2026-09-18 | 71.731 | +0.87% |
| 2026-09-17 | 71.1145 | -1.45% |
| 2026-09-16 | 72.1593 | +0.14% |
| 2026-09-15 | 72.0602 | -0.42% |
| 2026-09-14 | 72.3619 | -0.15% |
| 2026-09-13 | 72.471 | -0.01% |
| 2026-09-12 | 72.4765 | +0.39% |
| Date | 1 CHF in DOP | Daily change |
|---|---|---|
| 2026-09-11 | 72.1938 | -0.25% |
| 2026-09-10 | 72.3741 | -0.85% |
| 2026-09-09 | 72.9916 | +0.08% |
| 2026-09-08 | 72.9367 | -0.31% |
| 2026-09-07 | 73.1618 | +0.39% |
| 2026-09-06 | 72.874 | -0.37% |
| 2026-09-05 | 73.1425 | +0.00% |
| 2026-09-04 | 73.1413 | +0.79% |
| 2026-09-03 | 72.5649 | +0.33% |
| 2026-09-02 | 72.3291 | -0.50% |
| 2026-09-01 | 72.6958 | -0.13% |
| 2026-08-31 | 72.7919 | -0.26% |
| 2026-08-30 | 72.9829 | +0.29% |
| 2026-08-29 | 72.7683 | -0.45% |
| 2026-08-28 | 73.096 | — |
CHF to DOP conversion table
1 CHF71.7234 DOP
5 CHF358.6171 DOP
10 CHF717.2343 DOP
25 CHF1,793.0857 DOP
50 CHF3,586.1714 DOP
100 CHF7,172.3429 DOP
500 CHF35,861.714 DOP
1,000 CHF71,723.429 DOP
5,000 CHF358,617.14 DOP
10,000 CHF717,234.29 DOP
Get the CHF/DOP rate in your app
One GET request returns the latest CHF → 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/CHF/DOP"fetch('https://rate-api.com/api/v1/pair/CHF/DOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} DOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/DOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} DOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/DOP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CHF = {$data['rate']} DOP\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "DOP"
},
"rate": 71.7234,
"timestamp": 1790437514,
"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 CHFDominican Peso → Swiss Franc0.013942Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.