Convert CAD to JMD
Canadian Dollar → Jamaican Dollar
1 CAD = 111.52028 JMD(1 JMD = 0.00896698 CAD)
Currency converter
1 CAD =
111.5203 JMD
CAD to JMD: last 30 days
Over the last 30 days, 1 CAD traded between 111.5203 and 115.0335 JMD, averaging 113.5599 JMD. The CAD/JMD rate is down 2.57% since 2026-08-28.
- 30-day high
- 115.0335
- 2026-09-09
- 30-day low
- 111.5203
- 2026-09-25
- 30-day average
- 113.5599
- Days with data: 30
- 30-day change
- -2.57%
- since 2026-08-28
115.0335
111.52032026-08-28 → 2026-09-26
| Date | 1 CAD in JMD | Daily change |
|---|---|---|
| 2026-09-26 | 111.5203 | 0.00% |
| 2026-09-25 | 111.5203 | -0.30% |
| 2026-09-24 | 111.8595 | -0.04% |
| 2026-09-23 | 111.9088 | -0.31% |
| 2026-09-22 | 112.2536 | -0.30% |
| 2026-09-21 | 112.5857 | +0.11% |
| 2026-09-20 | 112.4621 | -0.09% |
| 2026-09-19 | 112.5613 | -0.06% |
| 2026-09-18 | 112.6248 | -0.62% |
| 2026-09-17 | 113.333 | +0.33% |
| 2026-09-16 | 112.9588 | -0.23% |
| 2026-09-15 | 113.2246 | -0.47% |
| 2026-09-14 | 113.7554 | -0.17% |
| 2026-09-13 | 113.9505 | +0.01% |
| 2026-09-12 | 113.942 | -0.24% |
| Date | 1 CAD in JMD | Daily change |
|---|---|---|
| 2026-09-11 | 114.2105 | +0.03% |
| 2026-09-10 | 114.1781 | -0.74% |
| 2026-09-09 | 115.0335 | +0.09% |
| 2026-09-08 | 114.931 | +0.18% |
| 2026-09-07 | 114.7195 | +0.12% |
| 2026-09-06 | 114.5784 | +0.02% |
| 2026-09-05 | 114.5596 | -0.05% |
| 2026-09-04 | 114.62 | -0.10% |
| 2026-09-03 | 114.7379 | +1.06% |
| 2026-09-02 | 113.5392 | -0.31% |
| 2026-09-01 | 113.8909 | -0.71% |
| 2026-08-31 | 114.7045 | +0.57% |
| 2026-08-30 | 114.0539 | -0.06% |
| 2026-08-29 | 114.1182 | -0.30% |
| 2026-08-28 | 114.4596 | — |
CAD to JMD conversion table
1 CAD111.5203 JMD
5 CAD557.6014 JMD
10 CAD1,115.2028 JMD
25 CAD2,788.0069 JMD
50 CAD5,576.0139 JMD
100 CAD11,152.028 JMD
500 CAD55,760.139 JMD
1,000 CAD111,520.28 JMD
5,000 CAD557,601.39 JMD
10,000 CAD1,115,202.8 JMD
Get the CAD/JMD rate in your app
One GET request returns the latest CAD → JMD 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/JMD"fetch('https://rate-api.com/api/v1/pair/CAD/JMD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} JMD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/JMD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} JMD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/JMD');
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']} JMD\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "JMD"
},
"rate": 111.5203,
"timestamp": 1790429384,
"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
JMD to CADJamaican Dollar → Canadian Dollar0.008967Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.