Convert JPY to THB
Japanese Yen → Thai Baht
1 JPY = 0.211592 THB(1 THB = 4.726087 JPY)
Currency converter
1 JPY =
0.21159 THB
JPY to THB: last 30 days
Over the last 30 days, 1 JPY traded between 0.20638 and 0.21514 THB, averaging 0.21145 THB. The JPY/THB rate is up 2.52% since 2026-08-28.
- 30-day high
- 0.21514
- 2026-09-14
- 30-day low
- 0.20638
- 2026-08-28
- 30-day average
- 0.21145
- Days with data: 30
- 30-day change
- +2.52%
- since 2026-08-28
0.21514
0.206382026-08-28 → 2026-09-26
| Date | 1 JPY in THB | Daily change |
|---|---|---|
| 2026-09-26 | 0.21159 | 0.00% |
| 2026-09-25 | 0.21159 | +0.39% |
| 2026-09-24 | 0.21076 | -0.02% |
| 2026-09-23 | 0.2108 | -0.02% |
| 2026-09-22 | 0.21084 | -0.23% |
| 2026-09-21 | 0.21132 | +0.03% |
| 2026-09-20 | 0.21125 | 0.00% |
| 2026-09-19 | 0.21125 | 0.00% |
| 2026-09-18 | 0.21125 | -1.25% |
| 2026-09-17 | 0.21392 | -0.25% |
| 2026-09-16 | 0.21445 | -0.17% |
| 2026-09-15 | 0.21481 | -0.16% |
| 2026-09-14 | 0.21514 | +0.23% |
| 2026-09-13 | 0.21465 | 0.00% |
| 2026-09-12 | 0.21465 | 0.00% |
| Date | 1 JPY in THB | Daily change |
|---|---|---|
| 2026-09-11 | 0.21465 | +0.30% |
| 2026-09-10 | 0.214 | -0.23% |
| 2026-09-09 | 0.21449 | +0.55% |
| 2026-09-08 | 0.21332 | +0.35% |
| 2026-09-07 | 0.21257 | +0.89% |
| 2026-09-06 | 0.21069 | 0.00% |
| 2026-09-05 | 0.21069 | 0.00% |
| 2026-09-04 | 0.21069 | -0.35% |
| 2026-09-03 | 0.21143 | +1.56% |
| 2026-09-02 | 0.20818 | +0.23% |
| 2026-09-01 | 0.2077 | +0.03% |
| 2026-08-31 | 0.20763 | +0.61% |
| 2026-08-30 | 0.20638 | 0.00% |
| 2026-08-29 | 0.20638 | 0.00% |
| 2026-08-28 | 0.20638 | — |
JPY to THB conversion table
1 JPY0.21159 THB
5 JPY1.058 THB
10 JPY2.1159 THB
25 JPY5.2898 THB
50 JPY10.5796 THB
100 JPY21.1592 THB
500 JPY105.7958 THB
1,000 JPY211.5915 THB
5,000 JPY1,057.9577 THB
10,000 JPY2,115.9154 THB
Get the JPY/THB rate in your app
One GET request returns the latest JPY → 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/JPY/THB"fetch('https://rate-api.com/api/v1/pair/JPY/THB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} THB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/THB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} THB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/THB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} THB\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "THB"
},
"rate": 0.2116,
"timestamp": 1790429286,
"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 JPYThai Baht → Japanese Yen4.7261Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.