Convert CAD to INR
Canadian Dollar → Indian Rupee
1 CAD = 67.750047 INR(1 INR = 0.0147601 CAD)
Currency converter
1 CAD =
67.75 INR
CAD to INR: last 30 days
Over the last 30 days, 1 CAD traded between 67.75 and 69.0805 INR, averaging 68.5352 INR. The CAD/INR rate is down 1.60% since 2026-08-28.
- 30-day high
- 69.0805
- 2026-09-09
- 30-day low
- 67.75
- 2026-09-25
- 30-day average
- 68.5352
- Days with data: 30
- 30-day change
- -1.60%
- since 2026-08-28
69.0805
67.752026-08-28 → 2026-09-26
| Date | 1 CAD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 67.75 | 0.00% |
| 2026-09-25 | 67.75 | -0.33% |
| 2026-09-24 | 67.9738 | +0.03% |
| 2026-09-23 | 67.9542 | -0.16% |
| 2026-09-22 | 68.0647 | -0.52% |
| 2026-09-21 | 68.4233 | -0.02% |
| 2026-09-20 | 68.4368 | 0.00% |
| 2026-09-19 | 68.4368 | 0.00% |
| 2026-09-18 | 68.4368 | -0.17% |
| 2026-09-17 | 68.5531 | -0.42% |
| 2026-09-16 | 68.8428 | -0.14% |
| 2026-09-15 | 68.9368 | +0.18% |
| 2026-09-14 | 68.8126 | -0.21% |
| 2026-09-13 | 68.9566 | 0.00% |
| 2026-09-12 | 68.9566 | 0.00% |
| Date | 1 CAD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 68.9566 | -0.18% |
| 2026-09-10 | 69.0793 | -0.00% |
| 2026-09-09 | 69.0805 | +0.56% |
| 2026-09-08 | 68.6925 | +0.47% |
| 2026-09-07 | 68.3719 | -0.14% |
| 2026-09-06 | 68.471 | 0.00% |
| 2026-09-05 | 68.471 | 0.00% |
| 2026-09-04 | 68.471 | -0.06% |
| 2026-09-03 | 68.5107 | +0.45% |
| 2026-09-02 | 68.2011 | -0.24% |
| 2026-09-01 | 68.3684 | -0.25% |
| 2026-08-31 | 68.5367 | -0.46% |
| 2026-08-30 | 68.8538 | 0.00% |
| 2026-08-29 | 68.8538 | 0.00% |
| 2026-08-28 | 68.8538 | — |
CAD to INR conversion table
1 CAD67.75 INR
5 CAD338.7502 INR
10 CAD677.5005 INR
25 CAD1,693.7512 INR
50 CAD3,387.5023 INR
100 CAD6,775.0047 INR
500 CAD33,875.023 INR
1,000 CAD67,750.047 INR
5,000 CAD338,750.23 INR
10,000 CAD677,500.47 INR
Get the CAD/INR rate in your app
One GET request returns the latest CAD → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/CAD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "INR"
},
"rate": 67.75,
"timestamp": 1790429440,
"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
INR to CADIndian Rupee → Canadian Dollar0.01476Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.