Convert CAD to PLN
Canadian Dollar → Polish Złoty
1 CAD = 2.710858 PLN(1 PLN = 0.368887 CAD)
Currency converter
1 CAD =
2.7109 PLN
CAD to PLN: last 30 days
Over the last 30 days, 1 CAD traded between 2.6835 and 2.7309 PLN, averaging 2.6998 PLN. The CAD/PLN rate is up 0.83% since 2026-08-28.
- 30-day high
- 2.7309
- 2026-09-24
- 30-day low
- 2.6835
- 2026-09-02
- 30-day average
- 2.6998
- Days with data: 30
- 30-day change
- +0.83%
- since 2026-08-28
2.7309
2.68352026-08-28 → 2026-09-26
| Date | 1 CAD in PLN | Daily change |
|---|---|---|
| 2026-09-26 | 2.7109 | 0.00% |
| 2026-09-25 | 2.7109 | -0.73% |
| 2026-09-24 | 2.7309 | +0.32% |
| 2026-09-23 | 2.7222 | +0.79% |
| 2026-09-22 | 2.7009 | -0.16% |
| 2026-09-21 | 2.7053 | -0.46% |
| 2026-09-20 | 2.7178 | 0.00% |
| 2026-09-19 | 2.7178 | 0.00% |
| 2026-09-18 | 2.7178 | +0.20% |
| 2026-09-17 | 2.7123 | +0.33% |
| 2026-09-16 | 2.7033 | +0.05% |
| 2026-09-15 | 2.702 | -0.17% |
| 2026-09-14 | 2.7067 | +0.53% |
| 2026-09-13 | 2.6923 | 0.00% |
| 2026-09-12 | 2.6923 | 0.00% |
| Date | 1 CAD in PLN | Daily change |
|---|---|---|
| 2026-09-11 | 2.6923 | -0.03% |
| 2026-09-10 | 2.693 | +0.12% |
| 2026-09-09 | 2.6899 | -0.12% |
| 2026-09-08 | 2.6931 | +0.35% |
| 2026-09-07 | 2.6836 | -0.25% |
| 2026-09-06 | 2.6903 | 0.00% |
| 2026-09-05 | 2.6903 | 0.00% |
| 2026-09-04 | 2.6903 | -0.39% |
| 2026-09-03 | 2.7008 | +0.64% |
| 2026-09-02 | 2.6835 | -0.27% |
| 2026-09-01 | 2.6909 | +0.11% |
| 2026-08-31 | 2.6878 | -0.02% |
| 2026-08-30 | 2.6885 | 0.00% |
| 2026-08-29 | 2.6885 | 0.00% |
| 2026-08-28 | 2.6885 | — |
CAD to PLN conversion table
1 CAD2.7109 PLN
5 CAD13.5543 PLN
10 CAD27.1086 PLN
25 CAD67.7714 PLN
50 CAD135.5429 PLN
100 CAD271.0858 PLN
500 CAD1,355.4288 PLN
1,000 CAD2,710.8576 PLN
5,000 CAD13,554.288 PLN
10,000 CAD27,108.576 PLN
Get the CAD/PLN rate in your app
One GET request returns the latest CAD → PLN 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/PLN"fetch('https://rate-api.com/api/v1/pair/CAD/PLN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} PLN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/PLN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} PLN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/PLN');
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']} PLN\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "PLN"
},
"rate": 2.7109,
"timestamp": 1790429385,
"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
PLN to CADPolish Złoty → Canadian Dollar0.36889Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.