Convert INR to HUF
Indian Rupee → Hungarian Forint
1 INR = 3.343203 HUF(1 HUF = 0.299114 INR)
Currency converter
1 INR =
3.3432 HUF
INR to HUF: last 30 days
Over the last 30 days, 1 INR traded between 3.2841 and 3.3568 HUF, averaging 3.3094 HUF. The INR/HUF rate is up 1.79% since 2026-08-28.
- 30-day high
- 3.3568
- 2026-09-24
- 30-day low
- 3.2841
- 2026-09-09
- 30-day average
- 3.3094
- Days with data: 30
- 30-day change
- +1.79%
- since 2026-08-28
3.3568
3.28412026-08-28 → 2026-09-26
| Date | 1 INR in HUF | Daily change |
|---|---|---|
| 2026-09-26 | 3.3432 | 0.00% |
| 2026-09-25 | 3.3432 | -0.40% |
| 2026-09-24 | 3.3568 | +0.67% |
| 2026-09-23 | 3.3345 | +1.05% |
| 2026-09-22 | 3.2998 | +0.25% |
| 2026-09-21 | 3.2916 | -0.71% |
| 2026-09-20 | 3.3153 | 0.00% |
| 2026-09-19 | 3.3153 | 0.00% |
| 2026-09-18 | 3.3153 | +0.60% |
| 2026-09-17 | 3.2954 | +0.10% |
| 2026-09-16 | 3.292 | -0.41% |
| 2026-09-15 | 3.3056 | -0.12% |
| 2026-09-14 | 3.3098 | +0.60% |
| 2026-09-13 | 3.2901 | 0.00% |
| 2026-09-12 | 3.2901 | 0.00% |
| Date | 1 INR in HUF | Daily change |
|---|---|---|
| 2026-09-11 | 3.2901 | -0.00% |
| 2026-09-10 | 3.2901 | +0.18% |
| 2026-09-09 | 3.2841 | -0.62% |
| 2026-09-08 | 3.3045 | -0.08% |
| 2026-09-07 | 3.3073 | -0.02% |
| 2026-09-06 | 3.3081 | 0.00% |
| 2026-09-05 | 3.3081 | 0.00% |
| 2026-09-04 | 3.3081 | -1.19% |
| 2026-09-03 | 3.3479 | -0.02% |
| 2026-09-02 | 3.3486 | +0.49% |
| 2026-09-01 | 3.3323 | +0.93% |
| 2026-08-31 | 3.3015 | +0.52% |
| 2026-08-30 | 3.2845 | 0.00% |
| 2026-08-29 | 3.2845 | 0.00% |
| 2026-08-28 | 3.2845 | — |
INR to HUF conversion table
1 INR3.3432 HUF
5 INR16.716 HUF
10 INR33.432 HUF
25 INR83.5801 HUF
50 INR167.1601 HUF
100 INR334.3203 HUF
500 INR1,671.6014 HUF
1,000 INR3,343.2027 HUF
5,000 INR16,716.014 HUF
10,000 INR33,432.027 HUF
Get the INR/HUF rate in your app
One GET request returns the latest INR → HUF 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/HUF"fetch('https://rate-api.com/api/v1/pair/INR/HUF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} HUF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/HUF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} HUF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/HUF');
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']} HUF\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "HUF"
},
"rate": 3.3432,
"timestamp": 1790429449,
"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
HUF to INRHungarian Forint → Indian Rupee0.29911Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.