Convert CAD to TND
Canadian Dollar → Tunisian Dinar
1 CAD = 2.0913 TND(1 TND = 0.478172 CAD)
Currency converter
1 CAD =
2.0913 TND
CAD to TND: last 30 days
Over the last 30 days, 1 CAD traded between 2.0754 and 2.1114 TND, averaging 2.0978 TND. The CAD/TND rate is down 0.23% since 2026-08-28.
- 30-day high
- 2.1114
- 2026-09-03
- 30-day low
- 2.0754
- 2026-08-31
- 30-day average
- 2.0978
- Days with data: 30
- 30-day change
- -0.23%
- since 2026-08-28
2.1114
2.07542026-08-28 → 2026-09-26
| Date | 1 CAD in TND | Daily change |
|---|---|---|
| 2026-09-26 | 2.0913 | 0.00% |
| 2026-09-25 | 2.0913 | -0.09% |
| 2026-09-24 | 2.0933 | -0.04% |
| 2026-09-23 | 2.0941 | -0.13% |
| 2026-09-22 | 2.0968 | -0.29% |
| 2026-09-21 | 2.103 | +0.13% |
| 2026-09-20 | 2.1003 | +0.08% |
| 2026-09-19 | 2.0987 | +0.95% |
| 2026-09-18 | 2.0789 | -0.75% |
| 2026-09-17 | 2.0946 | +0.14% |
| 2026-09-16 | 2.0918 | -0.67% |
| 2026-09-15 | 2.106 | +0.95% |
| 2026-09-14 | 2.0862 | -0.14% |
| 2026-09-13 | 2.0891 | -0.07% |
| 2026-09-12 | 2.0907 | -0.34% |
| Date | 1 CAD in TND | Daily change |
|---|---|---|
| 2026-09-11 | 2.0979 | -0.08% |
| 2026-09-10 | 2.0996 | -0.28% |
| 2026-09-09 | 2.1055 | +0.19% |
| 2026-09-08 | 2.1015 | -0.43% |
| 2026-09-07 | 2.1107 | -0.01% |
| 2026-09-06 | 2.1108 | +0.20% |
| 2026-09-05 | 2.1066 | +0.03% |
| 2026-09-04 | 2.1059 | -0.26% |
| 2026-09-03 | 2.1114 | +0.72% |
| 2026-09-02 | 2.0964 | -0.00% |
| 2026-09-01 | 2.0964 | +1.01% |
| 2026-08-31 | 2.0754 | -1.40% |
| 2026-08-30 | 2.1049 | -0.17% |
| 2026-08-29 | 2.1085 | +0.59% |
| 2026-08-28 | 2.096 | — |
CAD to TND conversion table
1 CAD2.0913 TND
5 CAD10.4565 TND
10 CAD20.913 TND
25 CAD52.2825 TND
50 CAD104.565 TND
100 CAD209.13 TND
500 CAD1,045.6499 TND
1,000 CAD2,091.2998 TND
5,000 CAD10,456.499 TND
10,000 CAD20,912.998 TND
Get the CAD/TND rate in your app
One GET request returns the latest CAD → TND 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/TND"fetch('https://rate-api.com/api/v1/pair/CAD/TND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} TND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/TND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} TND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/TND');
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']} TND\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "TND"
},
"rate": 2.0913,
"timestamp": 1790429396,
"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
TND to CADTunisian Dinar → Canadian Dollar0.47817Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.