Convert INR to EUR
Indian Rupee → Euro
1 INR = 0.00915244 EUR(1 EUR = 109.2605 INR)
Currency converter
1 INR =
0.0091524 EUR
INR to EUR: last 30 days
Over the last 30 days, 1 INR traded between 0.009004 and 0.0091678 EUR, averaging 0.0090779 EUR. The INR/EUR rate is up 1.65% since 2026-08-28.
- 30-day high
- 0.0091678
- 2026-09-24
- 30-day low
- 0.009004
- 2026-08-28
- 30-day average
- 0.0090779
- Days with data: 30
- 30-day change
- +1.65%
- since 2026-08-28
0.0091678
0.0090042026-08-28 → 2026-09-26
| Date | 1 INR in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.0091524 | 0.00% |
| 2026-09-25 | 0.0091524 | -0.17% |
| 2026-09-24 | 0.0091678 | +0.16% |
| 2026-09-23 | 0.0091533 | +0.30% |
| 2026-09-22 | 0.0091262 | +0.48% |
| 2026-09-21 | 0.0090829 | -0.20% |
| 2026-09-20 | 0.009101 | 0.00% |
| 2026-09-19 | 0.009101 | 0.00% |
| 2026-09-18 | 0.009101 | +0.25% |
| 2026-09-17 | 0.0090786 | +0.51% |
| 2026-09-16 | 0.0090327 | +0.02% |
| 2026-09-15 | 0.0090312 | -0.31% |
| 2026-09-14 | 0.0090595 | +0.36% |
| 2026-09-13 | 0.0090274 | 0.00% |
| 2026-09-12 | 0.0090274 | 0.00% |
| Date | 1 INR in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.0090274 | +0.08% |
| 2026-09-10 | 0.0090201 | -0.04% |
| 2026-09-09 | 0.0090234 | -0.62% |
| 2026-09-08 | 0.0090797 | -0.29% |
| 2026-09-07 | 0.0091061 | 0.00% |
| 2026-09-06 | 0.0091061 | 0.00% |
| 2026-09-05 | 0.0091061 | 0.00% |
| 2026-09-04 | 0.0091061 | -0.06% |
| 2026-09-03 | 0.0091117 | +0.19% |
| 2026-09-02 | 0.0090946 | +0.08% |
| 2026-09-01 | 0.009087 | +0.28% |
| 2026-08-31 | 0.0090614 | +0.64% |
| 2026-08-30 | 0.009004 | 0.00% |
| 2026-08-29 | 0.009004 | 0.00% |
| 2026-08-28 | 0.009004 | — |
INR to EUR conversion table
1 INR0.0091524 EUR
5 INR0.045762 EUR
10 INR0.091524 EUR
25 INR0.22881 EUR
50 INR0.45762 EUR
100 INR0.91524 EUR
500 INR4.5762 EUR
1,000 INR9.1524 EUR
5,000 INR45.7622 EUR
10,000 INR91.5244 EUR
Get the INR/EUR rate in your app
One GET request returns the latest INR → EUR 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/EUR?precision=6"fetch('https://rate-api.com/api/v1/pair/INR/EUR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/EUR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/EUR?precision=6');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "EUR"
},
"rate": 0.009152,
"timestamp": 1790429445,
"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
EUR to INREuro → Indian Rupee109.2605Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.