Convert CAD to MXN
Canadian Dollar → Mexican Peso
1 CAD = 12.514169 MXN(1 MXN = 0.0799094 CAD)
Currency converter
1 CAD =
12.5142 MXN
CAD to MXN: last 30 days
Over the last 30 days, 1 CAD traded between 12.2088 and 12.5142 MXN, averaging 12.2893 MXN. The CAD/MXN rate is up 2.30% since 2026-08-28.
- 30-day high
- 12.5142
- 2026-09-25
- 30-day low
- 12.2088
- 2026-09-02
- 30-day average
- 12.2893
- Days with data: 30
- 30-day change
- +2.30%
- since 2026-08-28
12.5142
12.20882026-08-28 → 2026-09-26
| Date | 1 CAD in MXN | Daily change |
|---|---|---|
| 2026-09-26 | 12.5142 | 0.00% |
| 2026-09-25 | 12.5142 | +0.47% |
| 2026-09-24 | 12.4558 | +0.63% |
| 2026-09-23 | 12.3779 | +0.78% |
| 2026-09-22 | 12.2822 | +0.05% |
| 2026-09-21 | 12.2763 | +0.12% |
| 2026-09-20 | 12.261 | 0.00% |
| 2026-09-19 | 12.261 | 0.00% |
| 2026-09-18 | 12.261 | -0.17% |
| 2026-09-17 | 12.2816 | -0.11% |
| 2026-09-16 | 12.2951 | -0.24% |
| 2026-09-15 | 12.3253 | +0.26% |
| 2026-09-14 | 12.2936 | +0.35% |
| 2026-09-13 | 12.2508 | 0.00% |
| 2026-09-12 | 12.2508 | 0.00% |
| Date | 1 CAD in MXN | Daily change |
|---|---|---|
| 2026-09-11 | 12.2508 | -0.11% |
| 2026-09-10 | 12.2637 | -0.11% |
| 2026-09-09 | 12.2767 | -0.02% |
| 2026-09-08 | 12.2789 | +0.34% |
| 2026-09-07 | 12.2374 | -0.07% |
| 2026-09-06 | 12.2457 | 0.00% |
| 2026-09-05 | 12.2457 | 0.00% |
| 2026-09-04 | 12.2457 | -0.72% |
| 2026-09-03 | 12.3346 | +1.03% |
| 2026-09-02 | 12.2088 | -0.27% |
| 2026-09-01 | 12.2414 | -0.06% |
| 2026-08-31 | 12.2485 | +0.12% |
| 2026-08-30 | 12.2334 | 0.00% |
| 2026-08-29 | 12.2334 | 0.00% |
| 2026-08-28 | 12.2334 | — |
CAD to MXN conversion table
1 CAD12.5142 MXN
5 CAD62.5708 MXN
10 CAD125.1417 MXN
25 CAD312.8542 MXN
50 CAD625.7084 MXN
100 CAD1,251.4169 MXN
500 CAD6,257.0844 MXN
1,000 CAD12,514.169 MXN
5,000 CAD62,570.844 MXN
10,000 CAD125,141.69 MXN
Get the CAD/MXN rate in your app
One GET request returns the latest CAD → MXN 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/MXN"fetch('https://rate-api.com/api/v1/pair/CAD/MXN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} MXN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/MXN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} MXN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/MXN');
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']} MXN\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "MXN"
},
"rate": 12.5142,
"timestamp": 1790447450,
"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
MXN to CADMexican Peso → Canadian Dollar0.079909Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.