Convert CAD to COP
Canadian Dollar → Colombian Peso
1 CAD = 2,338.1983 COP(1 COP = 0.00042768 CAD)
Currency converter
1 CAD =
2,338.1983 COP
CAD to COP: last 30 days
Over the last 30 days, 1 CAD traded between 2,219.98 and 2,358.5516 COP, averaging 2,278.0423 COP. The CAD/COP rate is up 1.05% since 2026-08-29.
- 30-day high
- 2,358.5516
- 2026-09-24
- 30-day low
- 2,219.98
- 2026-09-13
- 30-day average
- 2,278.0423
- Days with data: 30
- 30-day change
- +1.05%
- since 2026-08-29
2,358.5516
2,219.982026-08-29 → 2026-09-27
| Date | 1 CAD in COP | Daily change |
|---|---|---|
| 2026-09-27 | 2,338.1983 | 0.00% |
| 2026-09-26 | 2,338.1983 | 0.00% |
| 2026-09-25 | 2,338.1983 | -0.86% |
| 2026-09-24 | 2,358.5516 | +1.79% |
| 2026-09-23 | 2,316.9717 | +1.68% |
| 2026-09-22 | 2,278.7785 | +0.44% |
| 2026-09-21 | 2,268.7648 | +0.03% |
| 2026-09-20 | 2,268.1966 | -0.14% |
| 2026-09-19 | 2,271.3856 | +0.42% |
| 2026-09-18 | 2,261.905 | +0.95% |
| 2026-09-17 | 2,240.6757 | +0.09% |
| 2026-09-16 | 2,238.765 | +0.28% |
| 2026-09-15 | 2,232.594 | +0.28% |
| 2026-09-14 | 2,226.4529 | +0.29% |
| 2026-09-13 | 2,219.98 | -0.15% |
| Date | 1 CAD in COP | Daily change |
|---|---|---|
| 2026-09-12 | 2,223.2134 | -0.70% |
| 2026-09-11 | 2,238.9207 | -0.38% |
| 2026-09-10 | 2,247.3518 | -0.63% |
| 2026-09-09 | 2,261.5013 | -0.25% |
| 2026-09-08 | 2,267.2733 | +0.05% |
| 2026-09-07 | 2,266.2236 | -0.13% |
| 2026-09-06 | 2,269.2263 | -0.06% |
| 2026-09-05 | 2,270.6407 | -0.41% |
| 2026-09-04 | 2,280.0078 | -0.53% |
| 2026-09-03 | 2,292.2694 | +0.82% |
| 2026-09-02 | 2,273.7085 | -2.01% |
| 2026-09-01 | 2,320.461 | +0.58% |
| 2026-08-31 | 2,307.0883 | -0.21% |
| 2026-08-30 | 2,311.974 | -0.08% |
| 2026-08-29 | 2,313.7935 | — |
CAD to COP conversion table
1 CAD2,338.1983 COP
5 CAD11,690.992 COP
10 CAD23,381.983 COP
25 CAD58,454.958 COP
50 CAD116,909.92 COP
100 CAD233,819.83 COP
500 CAD1,169,099.2 COP
1,000 CAD2,338,198.3 COP
5,000 CAD11,690,992 COP
10,000 CAD23,381,983 COP
Get the CAD/COP rate in your app
One GET request returns the latest CAD → COP 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/COP"fetch('https://rate-api.com/api/v1/pair/CAD/COP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} COP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/COP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} COP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/COP');
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']} COP\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "COP"
},
"rate": 2338.1983,
"timestamp": 1790470775,
"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
COP to CADColombian Peso → Canadian Dollar0.00042768Convert CAD to other currencies
Convert other currencies to COP
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.