Convert TWD to JPY
New Taiwan Dollar → Japanese Yen
1 TWD = 4.958417 JPY(1 JPY = 0.201677 TWD)
Currency converter
1 TWD =
4.9584 JPY
TWD to JPY: last 30 days
Over the last 30 days, 1 TWD traded between 4.8675 and 5.0612 JPY, averaging 4.9447 JPY. The TWD/JPY rate is down 1.79% since 2026-08-28.
- 30-day high
- 5.0612
- 2026-09-01
- 30-day low
- 4.8675
- 2026-09-13
- 30-day average
- 4.9447
- Days with data: 30
- 30-day change
- -1.79%
- since 2026-08-28
5.0612
4.86752026-08-28 → 2026-09-26
| Date | 1 TWD in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 4.9584 | 0.00% |
| 2026-09-25 | 4.9584 | -0.66% |
| 2026-09-24 | 4.9914 | +0.30% |
| 2026-09-23 | 4.9765 | +0.34% |
| 2026-09-22 | 4.9599 | +0.26% |
| 2026-09-21 | 4.947 | -0.28% |
| 2026-09-20 | 4.9609 | -0.09% |
| 2026-09-19 | 4.9654 | -0.03% |
| 2026-09-18 | 4.9671 | +1.74% |
| 2026-09-17 | 4.8823 | -0.00% |
| 2026-09-16 | 4.8824 | +0.13% |
| 2026-09-15 | 4.8762 | +0.07% |
| 2026-09-14 | 4.8728 | +0.11% |
| 2026-09-13 | 4.8675 | -0.20% |
| 2026-09-12 | 4.8772 | +0.19% |
| Date | 1 TWD in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 4.8677 | -0.48% |
| 2026-09-10 | 4.8912 | +0.46% |
| 2026-09-09 | 4.8689 | -0.68% |
| 2026-09-08 | 4.902 | +0.16% |
| 2026-09-07 | 4.8944 | -0.83% |
| 2026-09-06 | 4.9356 | +0.09% |
| 2026-09-05 | 4.9312 | +0.10% |
| 2026-09-04 | 4.9262 | +0.12% |
| 2026-09-03 | 4.9203 | -1.97% |
| 2026-09-02 | 5.0191 | -0.83% |
| 2026-09-01 | 5.0612 | +0.41% |
| 2026-08-31 | 5.0405 | -0.10% |
| 2026-08-30 | 5.0456 | +0.01% |
| 2026-08-29 | 5.0453 | -0.07% |
| 2026-08-28 | 5.0487 | — |
TWD to JPY conversion table
1 TWD4.9584 JPY
5 TWD24.7921 JPY
10 TWD49.5842 JPY
25 TWD123.9604 JPY
50 TWD247.9208 JPY
100 TWD495.8417 JPY
500 TWD2,479.2083 JPY
1,000 TWD4,958.4167 JPY
5,000 TWD24,792.083 JPY
10,000 TWD49,584.167 JPY
Get the TWD/JPY rate in your app
One GET request returns the latest TWD → JPY 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/TWD/JPY"fetch('https://rate-api.com/api/v1/pair/TWD/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TWD = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TWD/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TWD = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TWD/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TWD = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "TWD",
"to": "JPY"
},
"rate": 4.9584,
"timestamp": 1790432071,
"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
JPY to TWDJapanese Yen → New Taiwan Dollar0.20168Convert TWD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.