Convert CAD to JOD
Canadian Dollar → Jordanian Dinar
1 CAD = 0.501316 JOD(1 JOD = 1.994749 CAD)
Currency converter
1 CAD =
0.50132 JOD
CAD to JOD: last 30 days
Over the last 30 days, 1 CAD traded between 0.50132 and 0.51496 JOD, averaging 0.50944 JOD. The CAD/JOD rate is down 2.04% since 2026-08-28.
- 30-day high
- 0.51496
- 2026-09-09
- 30-day low
- 0.50132
- 2026-09-25
- 30-day average
- 0.50944
- Days with data: 30
- 30-day change
- -2.04%
- since 2026-08-28
0.51496
0.501322026-08-28 → 2026-09-26
| Date | 1 CAD in JOD | Daily change |
|---|---|---|
| 2026-09-26 | 0.50132 | 0.00% |
| 2026-09-25 | 0.50132 | -0.18% |
| 2026-09-24 | 0.50222 | -0.20% |
| 2026-09-23 | 0.50323 | -0.32% |
| 2026-09-22 | 0.50484 | -0.28% |
| 2026-09-21 | 0.50628 | +0.04% |
| 2026-09-20 | 0.50607 | 0.00% |
| 2026-09-19 | 0.50607 | -0.00% |
| 2026-09-18 | 0.50609 | -0.10% |
| 2026-09-17 | 0.50661 | -0.40% |
| 2026-09-16 | 0.50864 | -0.14% |
| 2026-09-15 | 0.50934 | -0.24% |
| 2026-09-14 | 0.51055 | -0.21% |
| 2026-09-13 | 0.51162 | 0.00% |
| 2026-09-12 | 0.51162 | 0.00% |
| Date | 1 CAD in JOD | Daily change |
|---|---|---|
| 2026-09-11 | 0.51162 | -0.30% |
| 2026-09-10 | 0.51317 | -0.35% |
| 2026-09-09 | 0.51496 | +0.27% |
| 2026-09-08 | 0.51358 | +0.11% |
| 2026-09-07 | 0.51302 | -0.14% |
| 2026-09-06 | 0.51377 | 0.00% |
| 2026-09-05 | 0.51377 | 0.00% |
| 2026-09-04 | 0.51377 | -0.06% |
| 2026-09-03 | 0.51407 | +0.96% |
| 2026-09-02 | 0.50916 | -0.27% |
| 2026-09-01 | 0.51051 | -0.01% |
| 2026-08-31 | 0.51059 | -0.23% |
| 2026-08-30 | 0.51177 | 0.00% |
| 2026-08-29 | 0.51177 | 0.00% |
| 2026-08-28 | 0.51177 | — |
CAD to JOD conversion table
1 CAD0.50132 JOD
5 CAD2.5066 JOD
10 CAD5.0132 JOD
25 CAD12.5329 JOD
50 CAD25.0658 JOD
100 CAD50.1316 JOD
500 CAD250.6581 JOD
1,000 CAD501.3162 JOD
5,000 CAD2,506.5812 JOD
10,000 CAD5,013.1624 JOD
Get the CAD/JOD rate in your app
One GET request returns the latest CAD → JOD 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/JOD"fetch('https://rate-api.com/api/v1/pair/CAD/JOD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} JOD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/JOD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} JOD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/JOD');
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']} JOD\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "JOD"
},
"rate": 0.5013,
"timestamp": 1790429387,
"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
JOD to CADJordanian Dinar → Canadian Dollar1.9947Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.