Convert CAD to JPY
Canadian Dollar → Japanese Yen
1 CAD = 111.42804 JPY(1 JPY = 0.0089744 CAD)
Currency converter
1 CAD =
111.428 JPY
CAD to JPY: last 30 days
Over the last 30 days, 1 CAD traded between 111.156 and 115.3226 JPY, averaging 112.6192 JPY. The CAD/JPY rate is down 3.32% since 2026-08-28.
- 30-day high
- 115.3226
- 2026-09-01
- 30-day low
- 111.156
- 2026-09-11
- 30-day average
- 112.6192
- Days with data: 30
- 30-day change
- -3.32%
- since 2026-08-28
115.3226
111.1562026-08-28 → 2026-09-26
| Date | 1 CAD in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 111.428 | 0.00% |
| 2026-09-25 | 111.428 | -0.98% |
| 2026-09-24 | 112.5257 | +0.39% |
| 2026-09-23 | 112.0856 | +0.15% |
| 2026-09-22 | 111.9197 | -0.34% |
| 2026-09-21 | 112.3036 | -0.35% |
| 2026-09-20 | 112.6981 | 0.00% |
| 2026-09-19 | 112.6981 | 0.00% |
| 2026-09-18 | 112.6981 | +1.30% |
| 2026-09-17 | 111.2469 | +0.01% |
| 2026-09-16 | 111.2347 | -0.10% |
| 2026-09-15 | 111.3506 | +0.05% |
| 2026-09-14 | 111.2911 | +0.12% |
| 2026-09-13 | 111.156 | 0.00% |
| 2026-09-12 | 111.156 | 0.00% |
| Date | 1 CAD in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 111.156 | -0.39% |
| 2026-09-10 | 111.5953 | +0.24% |
| 2026-09-09 | 111.3234 | -0.40% |
| 2026-09-08 | 111.7711 | -0.18% |
| 2026-09-07 | 111.9754 | -1.10% |
| 2026-09-06 | 113.2246 | 0.00% |
| 2026-09-05 | 113.2246 | 0.00% |
| 2026-09-04 | 113.2246 | +0.10% |
| 2026-09-03 | 113.1163 | -1.31% |
| 2026-09-02 | 114.614 | -0.61% |
| 2026-09-01 | 115.3226 | +0.25% |
| 2026-08-31 | 115.0295 | -0.20% |
| 2026-08-30 | 115.2591 | 0.00% |
| 2026-08-29 | 115.2591 | 0.00% |
| 2026-08-28 | 115.2591 | — |
CAD to JPY conversion table
1 CAD111.428 JPY
5 CAD557.1402 JPY
10 CAD1,114.2804 JPY
25 CAD2,785.701 JPY
50 CAD5,571.402 JPY
100 CAD11,142.804 JPY
500 CAD55,714.02 JPY
1,000 CAD111,428.04 JPY
5,000 CAD557,140.2 JPY
10,000 CAD1,114,280.4 JPY
Get the CAD/JPY rate in your app
One GET request returns the latest CAD → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/CAD/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "JPY"
},
"rate": 111.428,
"timestamp": 1790429358,
"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
JPY to CADJapanese Yen → Canadian Dollar0.0089744Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.