Convert GEL to INR
Georgian Lari → Indian Rupee
1 GEL = 36.840659 INR(1 INR = 0.0271439 GEL)
Currency converter
1 GEL =
36.8407 INR
GEL to INR: last 30 days
Over the last 30 days, 1 GEL traded between 36.1927 and 36.9809 INR, averaging 36.6544 INR. The GEL/INR rate is up 0.60% since 2026-08-28.
- 30-day high
- 36.9809
- 2026-09-18
- 30-day low
- 36.1927
- 2026-09-04
- 30-day average
- 36.6544
- Days with data: 30
- 30-day change
- +0.60%
- since 2026-08-28
36.9809
36.19272026-08-28 → 2026-09-26
| Date | 1 GEL in INR | Daily change |
|---|---|---|
| 2026-09-26 | 36.8407 | 0.00% |
| 2026-09-25 | 36.8407 | +0.18% |
| 2026-09-24 | 36.7756 | -0.02% |
| 2026-09-23 | 36.7815 | +0.03% |
| 2026-09-22 | 36.7712 | -0.27% |
| 2026-09-21 | 36.8716 | -0.03% |
| 2026-09-20 | 36.8823 | +0.03% |
| 2026-09-19 | 36.8728 | -0.29% |
| 2026-09-18 | 36.9809 | +0.20% |
| 2026-09-17 | 36.9077 | -0.05% |
| 2026-09-16 | 36.9268 | +0.00% |
| 2026-09-15 | 36.9268 | +0.40% |
| 2026-09-14 | 36.781 | +0.22% |
| 2026-09-13 | 36.7002 | -0.08% |
| 2026-09-12 | 36.7312 | -0.02% |
| Date | 1 GEL in INR | Daily change |
|---|---|---|
| 2026-09-11 | 36.738 | +0.16% |
| 2026-09-10 | 36.679 | +0.33% |
| 2026-09-09 | 36.5585 | +0.34% |
| 2026-09-08 | 36.4343 | +0.28% |
| 2026-09-07 | 36.3334 | +0.19% |
| 2026-09-06 | 36.2646 | +0.04% |
| 2026-09-05 | 36.2508 | +0.16% |
| 2026-09-04 | 36.1927 | -0.18% |
| 2026-09-03 | 36.2563 | -0.37% |
| 2026-09-02 | 36.3913 | -0.10% |
| 2026-09-01 | 36.4259 | -0.44% |
| 2026-08-31 | 36.5871 | -0.18% |
| 2026-08-30 | 36.6546 | -0.00% |
| 2026-08-29 | 36.6547 | +0.09% |
| 2026-08-28 | 36.6209 | — |
GEL to INR conversion table
1 GEL36.8407 INR
5 GEL184.2033 INR
10 GEL368.4066 INR
25 GEL921.0165 INR
50 GEL1,842.0329 INR
100 GEL3,684.0659 INR
500 GEL18,420.329 INR
1,000 GEL36,840.659 INR
5,000 GEL184,203.29 INR
10,000 GEL368,406.59 INR
Get the GEL/INR rate in your app
One GET request returns the latest GEL → 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/GEL/INR"fetch('https://rate-api.com/api/v1/pair/GEL/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GEL = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GEL/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GEL = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GEL/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GEL = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "GEL",
"to": "INR"
},
"rate": 36.8407,
"timestamp": 1790432192,
"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 GELIndian Rupee → Georgian Lari0.027144Convert GEL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.