Convert INR to HNL
Indian Rupee → Honduran Lempira
1 INR = 0.280059 HNL(1 HNL = 3.570681 INR)
Currency converter
1 INR =
0.28006 HNL
INR to HNL: last 30 days
Over the last 30 days, 1 INR traded between 0.27999 and 0.28454 HNL, averaging 0.28163 HNL. The INR/HNL rate is down 0.47% since 2026-08-28.
- 30-day high
- 0.28454
- 2026-09-05
- 30-day low
- 0.27999
- 2026-09-16
- 30-day average
- 0.28163
- Days with data: 30
- 30-day change
- -0.47%
- since 2026-08-28
0.28454
0.279992026-08-28 → 2026-09-26
| Date | 1 INR in HNL | Daily change |
|---|---|---|
| 2026-09-26 | 0.28006 | 0.00% |
| 2026-09-25 | 0.28006 | -0.01% |
| 2026-09-24 | 0.28009 | -0.17% |
| 2026-09-23 | 0.28056 | -0.22% |
| 2026-09-22 | 0.28117 | +0.30% |
| 2026-09-21 | 0.28034 | -0.11% |
| 2026-09-20 | 0.28065 | -0.01% |
| 2026-09-19 | 0.28068 | -0.03% |
| 2026-09-18 | 0.28077 | +0.21% |
| 2026-09-17 | 0.28017 | +0.06% |
| 2026-09-16 | 0.27999 | -0.00% |
| 2026-09-15 | 0.27999 | -0.25% |
| 2026-09-14 | 0.2807 | -0.29% |
| 2026-09-13 | 0.28152 | +0.22% |
| 2026-09-12 | 0.28092 | +0.05% |
| Date | 1 INR in HNL | Daily change |
|---|---|---|
| 2026-09-11 | 0.28078 | -0.13% |
| 2026-09-10 | 0.28114 | -0.31% |
| 2026-09-09 | 0.28201 | -0.34% |
| 2026-09-08 | 0.28297 | -0.37% |
| 2026-09-07 | 0.28403 | -0.18% |
| 2026-09-06 | 0.28454 | -0.00% |
| 2026-09-05 | 0.28454 | +0.06% |
| 2026-09-04 | 0.28439 | +0.22% |
| 2026-09-03 | 0.28376 | +0.33% |
| 2026-09-02 | 0.28284 | -0.04% |
| 2026-09-01 | 0.28294 | +0.28% |
| 2026-08-31 | 0.28215 | +0.10% |
| 2026-08-30 | 0.28185 | +0.00% |
| 2026-08-29 | 0.28185 | +0.17% |
| 2026-08-28 | 0.28137 | — |
INR to HNL conversion table
1 INR0.28006 HNL
5 INR1.4003 HNL
10 INR2.8006 HNL
25 INR7.0015 HNL
50 INR14.0029 HNL
100 INR28.0059 HNL
500 INR140.0293 HNL
1,000 INR280.0586 HNL
5,000 INR1,400.293 HNL
10,000 INR2,800.586 HNL
Get the INR/HNL rate in your app
One GET request returns the latest INR → HNL 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/HNL"fetch('https://rate-api.com/api/v1/pair/INR/HNL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} HNL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/HNL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} HNL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/HNL');
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']} HNL\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "HNL"
},
"rate": 0.2801,
"timestamp": 1790438151,
"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
HNL to INRHonduran Lempira → Indian Rupee3.5707Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.