Convert CAD to DOP
Canadian Dollar → Dominican Peso
1 CAD = 42.056596 DOP(1 DOP = 0.0237775 CAD)
Currency converter
1 CAD =
42.0566 DOP
CAD to DOP: last 30 days
Over the last 30 days, 1 CAD traded between 41.8958 and 42.8912 DOP, averaging 42.3997 DOP. The CAD/DOP rate is down 0.44% since 2026-08-29.
- 30-day high
- 42.8912
- 2026-09-05
- 30-day low
- 41.8958
- 2026-09-17
- 30-day average
- 42.3997
- Days with data: 30
- 30-day change
- -0.44%
- since 2026-08-29
42.8912
41.89582026-08-29 → 2026-09-27
| Date | 1 CAD in DOP | Daily change |
|---|---|---|
| 2026-09-27 | 42.0566 | 0.00% |
| 2026-09-26 | 42.0566 | +0.12% |
| 2026-09-25 | 42.0058 | -0.63% |
| 2026-09-24 | 42.2703 | +0.08% |
| 2026-09-23 | 42.2378 | +0.46% |
| 2026-09-22 | 42.0426 | +0.02% |
| 2026-09-21 | 42.034 | -0.26% |
| 2026-09-20 | 42.1432 | +0.02% |
| 2026-09-19 | 42.1366 | -0.32% |
| 2026-09-18 | 42.2732 | +0.90% |
| 2026-09-17 | 41.8958 | -1.19% |
| 2026-09-16 | 42.399 | +0.10% |
| 2026-09-15 | 42.355 | -0.44% |
| 2026-09-14 | 42.5443 | -0.22% |
| 2026-09-13 | 42.6364 | -0.01% |
| Date | 1 CAD in DOP | Daily change |
|---|---|---|
| 2026-09-12 | 42.6397 | +0.39% |
| 2026-09-11 | 42.4734 | -0.14% |
| 2026-09-10 | 42.535 | -0.59% |
| 2026-09-09 | 42.7872 | -0.21% |
| 2026-09-08 | 42.8755 | +0.08% |
| 2026-09-07 | 42.8404 | +0.25% |
| 2026-09-06 | 42.7337 | -0.37% |
| 2026-09-05 | 42.8912 | +0.00% |
| 2026-09-04 | 42.8905 | +0.84% |
| 2026-09-03 | 42.5351 | +0.61% |
| 2026-09-02 | 42.2786 | -0.35% |
| 2026-09-01 | 42.4266 | +0.10% |
| 2026-08-31 | 42.3851 | +0.04% |
| 2026-08-30 | 42.3684 | +0.29% |
| 2026-08-29 | 42.2439 | — |
CAD to DOP conversion table
1 CAD42.0566 DOP
5 CAD210.283 DOP
10 CAD420.566 DOP
25 CAD1,051.4149 DOP
50 CAD2,102.8298 DOP
100 CAD4,205.6596 DOP
500 CAD21,028.298 DOP
1,000 CAD42,056.596 DOP
5,000 CAD210,282.98 DOP
10,000 CAD420,565.96 DOP
Get the CAD/DOP rate in your app
One GET request returns the latest CAD → 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/CAD/DOP"fetch('https://rate-api.com/api/v1/pair/CAD/DOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} DOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/DOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} DOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/DOP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CAD = {$data['rate']} DOP\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "DOP"
},
"rate": 42.0566,
"timestamp": 1790470788,
"date": "2026-09-27"
}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 CADDominican Peso → Canadian Dollar0.023777Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.