Convert HUF to INR
Hungarian Forint → Indian Rupee
1 HUF = 0.299114 INR(1 INR = 3.343203 HUF)
Currency converter
1 HUF =
0.29911 INR
HUF to INR: last 30 days
Over the last 30 days, 1 HUF traded between 0.2979 and 0.3045 INR, averaging 0.30218 INR. The HUF/INR rate is down 1.76% since 2026-08-28.
- 30-day high
- 0.3045
- 2026-09-09
- 30-day low
- 0.2979
- 2026-09-24
- 30-day average
- 0.30218
- Days with data: 30
- 30-day change
- -1.76%
- since 2026-08-28
0.3045
0.29792026-08-28 → 2026-09-26
| Date | 1 HUF in INR | Daily change |
|---|---|---|
| 2026-09-26 | 0.29911 | 0.00% |
| 2026-09-25 | 0.29911 | +0.41% |
| 2026-09-24 | 0.2979 | -0.67% |
| 2026-09-23 | 0.2999 | -1.04% |
| 2026-09-22 | 0.30305 | -0.25% |
| 2026-09-21 | 0.3038 | +0.72% |
| 2026-09-20 | 0.30163 | 0.00% |
| 2026-09-19 | 0.30163 | 0.00% |
| 2026-09-18 | 0.30163 | -0.60% |
| 2026-09-17 | 0.30345 | -0.10% |
| 2026-09-16 | 0.30377 | +0.41% |
| 2026-09-15 | 0.30251 | +0.12% |
| 2026-09-14 | 0.30214 | -0.59% |
| 2026-09-13 | 0.30394 | 0.00% |
| 2026-09-12 | 0.30394 | 0.00% |
| Date | 1 HUF in INR | Daily change |
|---|---|---|
| 2026-09-11 | 0.30394 | +0.00% |
| 2026-09-10 | 0.30394 | -0.18% |
| 2026-09-09 | 0.3045 | +0.62% |
| 2026-09-08 | 0.30261 | +0.08% |
| 2026-09-07 | 0.30236 | +0.02% |
| 2026-09-06 | 0.30229 | 0.00% |
| 2026-09-05 | 0.30229 | 0.00% |
| 2026-09-04 | 0.30229 | +1.20% |
| 2026-09-03 | 0.2987 | +0.02% |
| 2026-09-02 | 0.29863 | -0.49% |
| 2026-09-01 | 0.30009 | -0.92% |
| 2026-08-31 | 0.3029 | -0.51% |
| 2026-08-30 | 0.30446 | 0.00% |
| 2026-08-29 | 0.30446 | 0.00% |
| 2026-08-28 | 0.30446 | — |
HUF to INR conversion table
1 HUF0.29911 INR
5 HUF1.4956 INR
10 HUF2.9911 INR
25 HUF7.4779 INR
50 HUF14.9557 INR
100 HUF29.9114 INR
500 HUF149.5572 INR
1,000 HUF299.1144 INR
5,000 HUF1,495.5719 INR
10,000 HUF2,991.1438 INR
Get the HUF/INR rate in your app
One GET request returns the latest HUF → 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/HUF/INR"fetch('https://rate-api.com/api/v1/pair/HUF/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HUF = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HUF/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HUF = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HUF/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 HUF = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "HUF",
"to": "INR"
},
"rate": 0.2991,
"timestamp": 1790435313,
"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 HUFIndian Rupee → Hungarian Forint3.3432Convert HUF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.