Convert CAD to EUR
Canadian Dollar → Euro
1 CAD = 0.620078 EUR(1 EUR = 1.6127 CAD)
Currency converter
1 CAD =
0.62008 EUR
CAD to EUR: last 30 days
Over the last 30 days, 1 CAD traded between 0.61996 and 0.62425 EUR, averaging 0.62214 EUR. The CAD/EUR rate is up 0.02% since 2026-08-28.
- 30-day high
- 0.62425
- 2026-09-03
- 30-day low
- 0.61996
- 2026-08-28
- 30-day average
- 0.62214
- Days with data: 30
- 30-day change
- +0.02%
- since 2026-08-28
0.62425
0.619962026-08-28 → 2026-09-26
| Date | 1 CAD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.62008 | 0.00% |
| 2026-09-25 | 0.62008 | -0.50% |
| 2026-09-24 | 0.62317 | +0.19% |
| 2026-09-23 | 0.62201 | +0.13% |
| 2026-09-22 | 0.62117 | -0.05% |
| 2026-09-21 | 0.62148 | -0.22% |
| 2026-09-20 | 0.62284 | 0.00% |
| 2026-09-19 | 0.62284 | 0.00% |
| 2026-09-18 | 0.62284 | +0.08% |
| 2026-09-17 | 0.62237 | +0.08% |
| 2026-09-16 | 0.62184 | -0.12% |
| 2026-09-15 | 0.62258 | -0.13% |
| 2026-09-14 | 0.62341 | +0.15% |
| 2026-09-13 | 0.6225 | 0.00% |
| 2026-09-12 | 0.6225 | 0.00% |
| Date | 1 CAD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.6225 | -0.10% |
| 2026-09-10 | 0.6231 | -0.04% |
| 2026-09-09 | 0.62334 | -0.06% |
| 2026-09-08 | 0.62371 | +0.18% |
| 2026-09-07 | 0.6226 | -0.14% |
| 2026-09-06 | 0.62351 | 0.00% |
| 2026-09-05 | 0.62351 | 0.00% |
| 2026-09-04 | 0.62351 | -0.12% |
| 2026-09-03 | 0.62425 | +0.64% |
| 2026-09-02 | 0.62026 | -0.16% |
| 2026-09-01 | 0.62126 | +0.04% |
| 2026-08-31 | 0.62104 | +0.17% |
| 2026-08-30 | 0.61996 | 0.00% |
| 2026-08-29 | 0.61996 | 0.00% |
| 2026-08-28 | 0.61996 | — |
CAD to EUR conversion table
1 CAD0.62008 EUR
5 CAD3.1004 EUR
10 CAD6.2008 EUR
25 CAD15.502 EUR
50 CAD31.0039 EUR
100 CAD62.0078 EUR
500 CAD310.0391 EUR
1,000 CAD620.0781 EUR
5,000 CAD3,100.3906 EUR
10,000 CAD6,200.7813 EUR
Get the CAD/EUR rate in your app
One GET request returns the latest CAD → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/CAD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "EUR"
},
"rate": 0.6201,
"timestamp": 1790429424,
"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
EUR to CADEuro → Canadian Dollar1.6127Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.