Convert JPY to TWD
Japanese Yen → New Taiwan Dollar
1 JPY = 0.201677 TWD(1 TWD = 4.958417 JPY)
Currency converter
1 JPY =
0.20168 TWD
JPY to TWD: last 30 days
Over the last 30 days, 1 JPY traded between 0.19758 and 0.20545 TWD, averaging 0.20227 TWD. The JPY/TWD rate is up 1.82% since 2026-08-28.
- 30-day high
- 0.20545
- 2026-09-13
- 30-day low
- 0.19758
- 2026-09-01
- 30-day average
- 0.20227
- Days with data: 30
- 30-day change
- +1.82%
- since 2026-08-28
0.20545
0.197582026-08-28 → 2026-09-26
| Date | 1 JPY in TWD | Daily change |
|---|---|---|
| 2026-09-26 | 0.20168 | 0.00% |
| 2026-09-25 | 0.20168 | +0.66% |
| 2026-09-24 | 0.20035 | -0.30% |
| 2026-09-23 | 0.20094 | -0.33% |
| 2026-09-22 | 0.20162 | -0.26% |
| 2026-09-21 | 0.20214 | +0.28% |
| 2026-09-20 | 0.20158 | +0.09% |
| 2026-09-19 | 0.20139 | +0.03% |
| 2026-09-18 | 0.20132 | -1.71% |
| 2026-09-17 | 0.20482 | +0.00% |
| 2026-09-16 | 0.20482 | -0.13% |
| 2026-09-15 | 0.20508 | -0.07% |
| 2026-09-14 | 0.20522 | -0.11% |
| 2026-09-13 | 0.20545 | +0.20% |
| 2026-09-12 | 0.20504 | -0.19% |
| Date | 1 JPY in TWD | Daily change |
|---|---|---|
| 2026-09-11 | 0.20543 | +0.48% |
| 2026-09-10 | 0.20445 | -0.46% |
| 2026-09-09 | 0.20538 | +0.68% |
| 2026-09-08 | 0.204 | -0.16% |
| 2026-09-07 | 0.20432 | +0.84% |
| 2026-09-06 | 0.20261 | -0.09% |
| 2026-09-05 | 0.20279 | -0.10% |
| 2026-09-04 | 0.203 | -0.12% |
| 2026-09-03 | 0.20324 | +2.01% |
| 2026-09-02 | 0.19924 | +0.84% |
| 2026-09-01 | 0.19758 | -0.41% |
| 2026-08-31 | 0.19839 | +0.10% |
| 2026-08-30 | 0.19819 | -0.01% |
| 2026-08-29 | 0.19821 | +0.07% |
| 2026-08-28 | 0.19807 | — |
JPY to TWD conversion table
1 JPY0.20168 TWD
5 JPY1.0084 TWD
10 JPY2.0168 TWD
25 JPY5.0419 TWD
50 JPY10.0839 TWD
100 JPY20.1677 TWD
500 JPY100.8386 TWD
1,000 JPY201.6773 TWD
5,000 JPY1,008.3864 TWD
10,000 JPY2,016.7728 TWD
Get the JPY/TWD rate in your app
One GET request returns the latest JPY → TWD 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/TWD"fetch('https://rate-api.com/api/v1/pair/JPY/TWD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} TWD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/TWD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} TWD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/TWD');
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']} TWD\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "TWD"
},
"rate": 0.2017,
"timestamp": 1790429299,
"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
TWD to JPYNew Taiwan Dollar → Japanese Yen4.9584Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.