Convert TWD to AUD
New Taiwan Dollar → Australian Dollar
1 TWD = 0.0447554 AUD(1 AUD = 22.343655 TWD)
Currency converter
1 TWD =
0.044755 AUD
TWD to AUD: last 30 days
Over the last 30 days, 1 TWD traded between 0.043766 and 0.044755 AUD, averaging 0.044132 AUD. The TWD/AUD rate is up 1.84% since 2026-08-28.
- 30-day high
- 0.044755
- 2026-09-25
- 30-day low
- 0.043766
- 2026-09-04
- 30-day average
- 0.044132
- Days with data: 30
- 30-day change
- +1.84%
- since 2026-08-28
0.044755
0.0437662026-08-28 → 2026-09-26
| Date | 1 TWD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.044755 | 0.00% |
| 2026-09-25 | 0.044755 | +0.09% |
| 2026-09-24 | 0.044717 | +0.29% |
| 2026-09-23 | 0.04459 | +0.47% |
| 2026-09-22 | 0.04438 | +0.70% |
| 2026-09-21 | 0.044069 | -0.13% |
| 2026-09-20 | 0.044129 | -0.09% |
| 2026-09-19 | 0.044169 | -0.03% |
| 2026-09-18 | 0.044185 | +0.24% |
| 2026-09-17 | 0.044081 | -0.16% |
| 2026-09-16 | 0.044151 | +0.00% |
| 2026-09-15 | 0.04415 | -0.16% |
| 2026-09-14 | 0.044223 | +0.38% |
| 2026-09-13 | 0.044055 | -0.20% |
| 2026-09-12 | 0.044143 | +0.19% |
| Date | 1 TWD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.044057 | -0.22% |
| 2026-09-10 | 0.044153 | +0.42% |
| 2026-09-09 | 0.043969 | -0.15% |
| 2026-09-08 | 0.044036 | +0.45% |
| 2026-09-07 | 0.043839 | -0.03% |
| 2026-09-06 | 0.04385 | +0.09% |
| 2026-09-05 | 0.043811 | +0.10% |
| 2026-09-04 | 0.043766 | -0.18% |
| 2026-09-03 | 0.043844 | -0.35% |
| 2026-09-02 | 0.043998 | -0.57% |
| 2026-09-01 | 0.044251 | +0.43% |
| 2026-08-31 | 0.044062 | +0.33% |
| 2026-08-30 | 0.043918 | +0.01% |
| 2026-08-29 | 0.043915 | -0.07% |
| 2026-08-28 | 0.043946 | — |
TWD to AUD conversion table
1 TWD0.044755 AUD
5 TWD0.22378 AUD
10 TWD0.44755 AUD
25 TWD1.1189 AUD
50 TWD2.2378 AUD
100 TWD4.4755 AUD
500 TWD22.3777 AUD
1,000 TWD44.7554 AUD
5,000 TWD223.7772 AUD
10,000 TWD447.5544 AUD
Get the TWD/AUD rate in your app
One GET request returns the latest TWD → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/TWD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TWD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TWD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TWD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TWD/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "TWD",
"to": "AUD"
},
"rate": 0.0448,
"timestamp": 1790432061,
"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
AUD to TWDAustralian Dollar → New Taiwan Dollar22.3437Convert TWD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.