Convert INR to THB
Indian Rupee → Thai Baht
1 INR = 0.348003 THB(1 THB = 2.873537 INR)
Currency converter
1 INR =
0.348 THB
INR to THB: last 30 days
Over the last 30 days, 1 INR traded between 0.34548 and 0.35034 THB, averaging 0.34741 THB. The INR/THB rate is up 0.73% since 2026-08-28.
- 30-day high
- 0.35034
- 2026-09-01
- 30-day low
- 0.34548
- 2026-08-28
- 30-day average
- 0.34741
- Days with data: 30
- 30-day change
- +0.73%
- since 2026-08-28
0.35034
0.345482026-08-28 → 2026-09-26
| Date | 1 INR in THB | Daily change |
|---|---|---|
| 2026-09-26 | 0.348 | 0.00% |
| 2026-09-25 | 0.348 | -0.26% |
| 2026-09-24 | 0.3489 | +0.34% |
| 2026-09-23 | 0.34771 | +0.29% |
| 2026-09-22 | 0.34669 | -0.05% |
| 2026-09-21 | 0.34685 | -0.30% |
| 2026-09-20 | 0.34788 | 0.00% |
| 2026-09-19 | 0.34788 | 0.00% |
| 2026-09-18 | 0.34788 | +0.21% |
| 2026-09-17 | 0.34714 | +0.19% |
| 2026-09-16 | 0.3465 | -0.14% |
| 2026-09-15 | 0.34697 | -0.28% |
| 2026-09-14 | 0.34795 | +0.56% |
| 2026-09-13 | 0.34601 | 0.00% |
| 2026-09-12 | 0.34601 | 0.00% |
| Date | 1 INR in THB | Daily change |
|---|---|---|
| 2026-09-11 | 0.34601 | +0.09% |
| 2026-09-10 | 0.34571 | +0.02% |
| 2026-09-09 | 0.34565 | -0.42% |
| 2026-09-08 | 0.34709 | -0.30% |
| 2026-09-07 | 0.34813 | -0.08% |
| 2026-09-06 | 0.3484 | 0.00% |
| 2026-09-05 | 0.3484 | 0.00% |
| 2026-09-04 | 0.3484 | -0.20% |
| 2026-09-03 | 0.34908 | -0.22% |
| 2026-09-02 | 0.34985 | -0.14% |
| 2026-09-01 | 0.35034 | +0.53% |
| 2026-08-31 | 0.34848 | +0.87% |
| 2026-08-30 | 0.34548 | 0.00% |
| 2026-08-29 | 0.34548 | 0.00% |
| 2026-08-28 | 0.34548 | — |
INR to THB conversion table
1 INR0.348 THB
5 INR1.74 THB
10 INR3.48 THB
25 INR8.7001 THB
50 INR17.4002 THB
100 INR34.8003 THB
500 INR174.0016 THB
1,000 INR348.0032 THB
5,000 INR1,740.0158 THB
10,000 INR3,480.0317 THB
Get the INR/THB rate in your app
One GET request returns the latest INR → THB 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/THB"fetch('https://rate-api.com/api/v1/pair/INR/THB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} THB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/THB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} THB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/THB');
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']} THB\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "THB"
},
"rate": 0.348,
"timestamp": 1790429371,
"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
THB to INRThai Baht → Indian Rupee2.8735Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.