Convert TWD to INR
New Taiwan Dollar → Indian Rupee
1 TWD = 3.014797 INR(1 INR = 0.331697 TWD)
Currency converter
1 TWD =
3.0148 INR
TWD to INR: last 30 days
Over the last 30 days, 1 TWD traded between 2.979 and 3.0277 INR, averaging 3.0091 INR. The TWD/INR rate is down 0.04% since 2026-08-28.
- 30-day high
- 3.0277
- 2026-09-10
- 30-day low
- 2.979
- 2026-09-04
- 30-day average
- 3.0091
- Days with data: 30
- 30-day change
- -0.04%
- since 2026-08-28
3.0277
2.9792026-08-28 → 2026-09-26
| Date | 1 TWD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 3.0148 | 0.00% |
| 2026-09-25 | 3.0148 | -0.01% |
| 2026-09-24 | 3.0152 | -0.07% |
| 2026-09-23 | 3.0171 | +0.02% |
| 2026-09-22 | 3.0164 | +0.08% |
| 2026-09-21 | 3.0141 | +0.05% |
| 2026-09-20 | 3.0125 | -0.09% |
| 2026-09-19 | 3.0153 | -0.03% |
| 2026-09-18 | 3.0163 | +0.26% |
| 2026-09-17 | 3.0086 | -0.44% |
| 2026-09-16 | 3.0217 | +0.09% |
| 2026-09-15 | 3.0189 | +0.20% |
| 2026-09-14 | 3.0129 | -0.22% |
| 2026-09-13 | 3.0196 | -0.20% |
| 2026-09-12 | 3.0256 | +0.19% |
| Date | 1 TWD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 3.0197 | -0.26% |
| 2026-09-10 | 3.0277 | +0.21% |
| 2026-09-09 | 3.0213 | +0.29% |
| 2026-09-08 | 3.0127 | +0.81% |
| 2026-09-07 | 2.9885 | +0.13% |
| 2026-09-06 | 2.9847 | +0.09% |
| 2026-09-05 | 2.9821 | +0.10% |
| 2026-09-04 | 2.979 | -0.03% |
| 2026-09-03 | 2.98 | -0.22% |
| 2026-09-02 | 2.9866 | -0.46% |
| 2026-09-01 | 3.0005 | -0.09% |
| 2026-08-31 | 3.0032 | -0.36% |
| 2026-08-30 | 3.0141 | +0.01% |
| 2026-08-29 | 3.0139 | -0.07% |
| 2026-08-28 | 3.016 | — |
TWD to INR conversion table
1 TWD3.0148 INR
5 TWD15.074 INR
10 TWD30.148 INR
25 TWD75.3699 INR
50 TWD150.7399 INR
100 TWD301.4797 INR
500 TWD1,507.3987 INR
1,000 TWD3,014.7974 INR
5,000 TWD15,073.987 INR
10,000 TWD30,147.974 INR
Get the TWD/INR rate in your app
One GET request returns the latest TWD → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/TWD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TWD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TWD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TWD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TWD/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "TWD",
"to": "INR"
},
"rate": 3.0148,
"timestamp": 1790432149,
"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
INR to TWDIndian Rupee → New Taiwan Dollar0.3317Convert TWD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.