Convert INR to GEL
Indian Rupee → Georgian Lari
1 INR = 0.0271439 GEL(1 GEL = 36.840659 INR)
Currency converter
1 INR =
0.027144 GEL
INR to GEL: last 30 days
Over the last 30 days, 1 INR traded between 0.027041 and 0.02763 GEL, averaging 0.027283 GEL. The INR/GEL rate is down 0.60% since 2026-08-28.
- 30-day high
- 0.02763
- 2026-09-04
- 30-day low
- 0.027041
- 2026-09-18
- 30-day average
- 0.027283
- Days with data: 30
- 30-day change
- -0.60%
- since 2026-08-28
0.02763
0.0270412026-08-28 → 2026-09-26
| Date | 1 INR in GEL | Daily change |
|---|---|---|
| 2026-09-26 | 0.027144 | 0.00% |
| 2026-09-25 | 0.027144 | -0.18% |
| 2026-09-24 | 0.027192 | +0.02% |
| 2026-09-23 | 0.027188 | -0.03% |
| 2026-09-22 | 0.027195 | +0.27% |
| 2026-09-21 | 0.027121 | +0.03% |
| 2026-09-20 | 0.027113 | -0.03% |
| 2026-09-19 | 0.02712 | +0.29% |
| 2026-09-18 | 0.027041 | -0.20% |
| 2026-09-17 | 0.027095 | +0.05% |
| 2026-09-16 | 0.027081 | -0.00% |
| 2026-09-15 | 0.027081 | -0.39% |
| 2026-09-14 | 0.027188 | -0.22% |
| 2026-09-13 | 0.027248 | +0.08% |
| 2026-09-12 | 0.027225 | +0.02% |
| Date | 1 INR in GEL | Daily change |
|---|---|---|
| 2026-09-11 | 0.02722 | -0.16% |
| 2026-09-10 | 0.027264 | -0.33% |
| 2026-09-09 | 0.027353 | -0.34% |
| 2026-09-08 | 0.027447 | -0.28% |
| 2026-09-07 | 0.027523 | -0.19% |
| 2026-09-06 | 0.027575 | -0.04% |
| 2026-09-05 | 0.027586 | -0.16% |
| 2026-09-04 | 0.02763 | +0.18% |
| 2026-09-03 | 0.027581 | +0.37% |
| 2026-09-02 | 0.027479 | +0.10% |
| 2026-09-01 | 0.027453 | +0.44% |
| 2026-08-31 | 0.027332 | +0.18% |
| 2026-08-30 | 0.027282 | +0.00% |
| 2026-08-29 | 0.027282 | -0.09% |
| 2026-08-28 | 0.027307 | — |
INR to GEL conversion table
1 INR0.027144 GEL
5 INR0.13572 GEL
10 INR0.27144 GEL
25 INR0.6786 GEL
50 INR1.3572 GEL
100 INR2.7144 GEL
500 INR13.572 GEL
1,000 INR27.1439 GEL
5,000 INR135.7196 GEL
10,000 INR271.4392 GEL
Get the INR/GEL rate in your app
One GET request returns the latest INR → GEL 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/GEL"fetch('https://rate-api.com/api/v1/pair/INR/GEL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} GEL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/GEL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} GEL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/GEL');
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']} GEL\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "GEL"
},
"rate": 0.0271,
"timestamp": 1790429439,
"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
GEL to INRGeorgian Lari → Indian Rupee36.8407Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.