Convert CAD to PEN
Canadian Dollar → Peruvian Sol
1 CAD = 2.407389 PEN(1 PEN = 0.415388 CAD)
Currency converter
1 CAD =
2.4074 PEN
CAD to PEN: last 30 days
Over the last 30 days, 1 CAD traded between 2.3845 and 2.4368 PEN, averaging 2.4174 PEN. The CAD/PEN rate is down 0.47% since 2026-08-28.
- 30-day high
- 2.4368
- 2026-09-03
- 30-day low
- 2.3845
- 2026-09-23
- 30-day average
- 2.4174
- Days with data: 30
- 30-day change
- -0.47%
- since 2026-08-28
2.4368
2.38452026-08-28 → 2026-09-26
| Date | 1 CAD in PEN | Daily change |
|---|---|---|
| 2026-09-26 | 2.4074 | 0.00% |
| 2026-09-25 | 2.4074 | +0.35% |
| 2026-09-24 | 2.399 | +0.61% |
| 2026-09-23 | 2.3845 | -0.63% |
| 2026-09-22 | 2.3995 | -0.45% |
| 2026-09-21 | 2.4103 | +0.06% |
| 2026-09-20 | 2.4088 | +0.01% |
| 2026-09-19 | 2.4087 | -0.03% |
| 2026-09-18 | 2.4094 | -0.15% |
| 2026-09-17 | 2.413 | +0.26% |
| 2026-09-16 | 2.4068 | -0.30% |
| 2026-09-15 | 2.414 | -0.27% |
| 2026-09-14 | 2.4204 | -0.01% |
| 2026-09-13 | 2.4207 | -0.01% |
| 2026-09-12 | 2.4209 | -0.01% |
| Date | 1 CAD in PEN | Daily change |
|---|---|---|
| 2026-09-11 | 2.421 | -0.14% |
| 2026-09-10 | 2.4245 | -0.43% |
| 2026-09-09 | 2.4351 | +0.17% |
| 2026-09-08 | 2.4311 | +0.14% |
| 2026-09-07 | 2.4277 | -0.12% |
| 2026-09-06 | 2.4306 | +0.04% |
| 2026-09-05 | 2.4295 | -0.03% |
| 2026-09-04 | 2.4303 | -0.26% |
| 2026-09-03 | 2.4368 | +0.83% |
| 2026-09-02 | 2.4166 | -0.22% |
| 2026-09-01 | 2.4219 | -0.28% |
| 2026-08-31 | 2.4288 | +0.39% |
| 2026-08-30 | 2.4192 | -0.01% |
| 2026-08-29 | 2.4194 | +0.03% |
| 2026-08-28 | 2.4188 | — |
CAD to PEN conversion table
1 CAD2.4074 PEN
5 CAD12.0369 PEN
10 CAD24.0739 PEN
25 CAD60.1847 PEN
50 CAD120.3694 PEN
100 CAD240.7389 PEN
500 CAD1,203.6943 PEN
1,000 CAD2,407.3887 PEN
5,000 CAD12,036.943 PEN
10,000 CAD24,073.887 PEN
Get the CAD/PEN rate in your app
One GET request returns the latest CAD → PEN 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/PEN"fetch('https://rate-api.com/api/v1/pair/CAD/PEN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} PEN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/PEN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} PEN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/PEN');
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']} PEN\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "PEN"
},
"rate": 2.4074,
"timestamp": 1790429367,
"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
PEN to CADPeruvian Sol → Canadian Dollar0.41539Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.