Convert THB to CAD
Thai Baht → Canadian Dollar
1 THB = 0.0424138 CAD(1 CAD = 23.577231 THB)
Currency converter
1 THB =
0.042414 CAD
THB to CAD: last 30 days
Over the last 30 days, 1 THB traded between 0.04175 and 0.042414 CAD, averaging 0.042 CAD. The THB/CAD rate is up 0.89% since 2026-08-28.
- 30-day high
- 0.042414
- 2026-09-25
- 30-day low
- 0.04175
- 2026-09-01
- 30-day average
- 0.042
- Days with data: 30
- 30-day change
- +0.89%
- since 2026-08-28
0.042414
0.041752026-08-28 → 2026-09-26
| Date | 1 THB in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.042414 | 0.00% |
| 2026-09-25 | 0.042414 | +0.59% |
| 2026-09-24 | 0.042166 | -0.37% |
| 2026-09-23 | 0.042322 | -0.13% |
| 2026-09-22 | 0.042378 | +0.57% |
| 2026-09-21 | 0.042136 | +0.32% |
| 2026-09-20 | 0.042003 | 0.00% |
| 2026-09-19 | 0.042003 | 0.00% |
| 2026-09-18 | 0.042003 | -0.04% |
| 2026-09-17 | 0.042021 | +0.24% |
| 2026-09-16 | 0.041922 | +0.27% |
| 2026-09-15 | 0.041808 | +0.10% |
| 2026-09-14 | 0.041765 | -0.35% |
| 2026-09-13 | 0.041911 | 0.00% |
| 2026-09-12 | 0.041911 | 0.00% |
| Date | 1 THB in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.041911 | +0.09% |
| 2026-09-10 | 0.041873 | -0.02% |
| 2026-09-09 | 0.04188 | -0.15% |
| 2026-09-08 | 0.041941 | -0.17% |
| 2026-09-07 | 0.042012 | +0.22% |
| 2026-09-06 | 0.04192 | 0.00% |
| 2026-09-05 | 0.04192 | 0.00% |
| 2026-09-04 | 0.04192 | +0.26% |
| 2026-09-03 | 0.041813 | -0.23% |
| 2026-09-02 | 0.041911 | +0.39% |
| 2026-09-01 | 0.04175 | -0.29% |
| 2026-08-31 | 0.041869 | -0.40% |
| 2026-08-30 | 0.042039 | 0.00% |
| 2026-08-29 | 0.042039 | 0.00% |
| 2026-08-28 | 0.042039 | — |
THB to CAD conversion table
1 THB0.042414 CAD
5 THB0.21207 CAD
10 THB0.42414 CAD
25 THB1.0603 CAD
50 THB2.1207 CAD
100 THB4.2414 CAD
500 THB21.2069 CAD
1,000 THB42.4138 CAD
5,000 THB212.069 CAD
10,000 THB424.138 CAD
Get the THB/CAD rate in your app
One GET request returns the latest THB → CAD 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/THB/CAD"fetch('https://rate-api.com/api/v1/pair/THB/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 THB = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/THB/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 THB = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/THB/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 THB = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "THB",
"to": "CAD"
},
"rate": 0.0424,
"timestamp": 1790432085,
"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
CAD to THBCanadian Dollar → Thai Baht23.5772Convert THB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.