Convert INR to TWD
Indian Rupee → New Taiwan Dollar
1 INR = 0.331697 TWD(1 TWD = 3.014797 INR)
Currency converter
1 INR =
0.3317 TWD
INR to TWD: last 30 days
Over the last 30 days, 1 INR traded between 0.33028 and 0.33568 TWD, averaging 0.33233 TWD. The INR/TWD rate is up 0.04% since 2026-08-28.
- 30-day high
- 0.33568
- 2026-09-04
- 30-day low
- 0.33028
- 2026-09-10
- 30-day average
- 0.33233
- Days with data: 30
- 30-day change
- +0.04%
- since 2026-08-28
0.33568
0.330282026-08-28 → 2026-09-26
| Date | 1 INR in TWD | Daily change |
|---|---|---|
| 2026-09-26 | 0.3317 | 0.00% |
| 2026-09-25 | 0.3317 | +0.01% |
| 2026-09-24 | 0.33166 | +0.07% |
| 2026-09-23 | 0.33144 | -0.02% |
| 2026-09-22 | 0.33152 | -0.08% |
| 2026-09-21 | 0.33178 | -0.05% |
| 2026-09-20 | 0.33195 | +0.09% |
| 2026-09-19 | 0.33164 | +0.03% |
| 2026-09-18 | 0.33153 | -0.26% |
| 2026-09-17 | 0.33238 | +0.44% |
| 2026-09-16 | 0.33094 | -0.09% |
| 2026-09-15 | 0.33125 | -0.20% |
| 2026-09-14 | 0.3319 | +0.22% |
| 2026-09-13 | 0.33117 | +0.20% |
| 2026-09-12 | 0.33051 | -0.19% |
| Date | 1 INR in TWD | Daily change |
|---|---|---|
| 2026-09-11 | 0.33115 | +0.26% |
| 2026-09-10 | 0.33028 | -0.21% |
| 2026-09-09 | 0.33098 | -0.29% |
| 2026-09-08 | 0.33193 | -0.80% |
| 2026-09-07 | 0.33462 | -0.13% |
| 2026-09-06 | 0.33504 | -0.09% |
| 2026-09-05 | 0.33534 | -0.10% |
| 2026-09-04 | 0.33568 | +0.03% |
| 2026-09-03 | 0.33556 | +0.22% |
| 2026-09-02 | 0.33483 | +0.47% |
| 2026-09-01 | 0.33328 | +0.09% |
| 2026-08-31 | 0.33297 | +0.36% |
| 2026-08-30 | 0.33177 | -0.01% |
| 2026-08-29 | 0.33179 | +0.07% |
| 2026-08-28 | 0.33156 | — |
INR to TWD conversion table
1 INR0.3317 TWD
5 INR1.6585 TWD
10 INR3.317 TWD
25 INR8.2924 TWD
50 INR16.5849 TWD
100 INR33.1697 TWD
500 INR165.8486 TWD
1,000 INR331.6973 TWD
5,000 INR1,658.4863 TWD
10,000 INR3,316.9725 TWD
Get the INR/TWD rate in your app
One GET request returns the latest INR → 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/INR/TWD"fetch('https://rate-api.com/api/v1/pair/INR/TWD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} TWD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/TWD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} TWD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/TWD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} TWD\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "TWD"
},
"rate": 0.3317,
"timestamp": 1790429400,
"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 INRNew Taiwan Dollar → Indian Rupee3.0148Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.