Convert CAD to THB
Canadian Dollar → Thai Baht
1 CAD = 23.577231 THB(1 THB = 0.0424138 CAD)
Currency converter
1 CAD =
23.5772 THB
CAD to THB: last 30 days
Over the last 30 days, 1 CAD traded between 23.5772 and 23.9523 THB, averaging 23.8097 THB. The CAD/THB rate is down 0.88% since 2026-08-28.
- 30-day high
- 23.9523
- 2026-09-01
- 30-day low
- 23.5772
- 2026-09-25
- 30-day average
- 23.8097
- Days with data: 30
- 30-day change
- -0.88%
- since 2026-08-28
23.9523
23.57722026-08-28 → 2026-09-26
| Date | 1 CAD in THB | Daily change |
|---|---|---|
| 2026-09-26 | 23.5772 | 0.00% |
| 2026-09-25 | 23.5772 | -0.58% |
| 2026-09-24 | 23.716 | +0.37% |
| 2026-09-23 | 23.6282 | +0.13% |
| 2026-09-22 | 23.5973 | -0.57% |
| 2026-09-21 | 23.7325 | -0.32% |
| 2026-09-20 | 23.808 | 0.00% |
| 2026-09-19 | 23.808 | 0.00% |
| 2026-09-18 | 23.808 | +0.04% |
| 2026-09-17 | 23.7978 | -0.24% |
| 2026-09-16 | 23.8539 | -0.27% |
| 2026-09-15 | 23.9188 | -0.10% |
| 2026-09-14 | 23.9433 | +0.35% |
| 2026-09-13 | 23.8599 | 0.00% |
| 2026-09-12 | 23.8599 | 0.00% |
| Date | 1 CAD in THB | Daily change |
|---|---|---|
| 2026-09-11 | 23.8599 | -0.09% |
| 2026-09-10 | 23.8817 | +0.02% |
| 2026-09-09 | 23.8778 | +0.15% |
| 2026-09-08 | 23.8428 | +0.17% |
| 2026-09-07 | 23.8025 | -0.22% |
| 2026-09-06 | 23.8551 | 0.00% |
| 2026-09-05 | 23.8551 | 0.00% |
| 2026-09-04 | 23.8551 | -0.25% |
| 2026-09-03 | 23.916 | +0.24% |
| 2026-09-02 | 23.86 | -0.39% |
| 2026-09-01 | 23.9523 | +0.29% |
| 2026-08-31 | 23.8838 | +0.41% |
| 2026-08-30 | 23.7874 | 0.00% |
| 2026-08-29 | 23.7874 | 0.00% |
| 2026-08-28 | 23.7874 | — |
CAD to THB conversion table
1 CAD23.5772 THB
5 CAD117.8862 THB
10 CAD235.7723 THB
25 CAD589.4308 THB
50 CAD1,178.8615 THB
100 CAD2,357.7231 THB
500 CAD11,788.615 THB
1,000 CAD23,577.231 THB
5,000 CAD117,886.15 THB
10,000 CAD235,772.31 THB
Get the CAD/THB rate in your app
One GET request returns the latest CAD → THB 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/THB"fetch('https://rate-api.com/api/v1/pair/CAD/THB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} THB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/THB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} THB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/THB');
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']} THB\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "THB"
},
"rate": 23.5772,
"timestamp": 1790429344,
"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
THB to CADThai Baht → Canadian Dollar0.042414Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.