Convert INR to LKR
Indian Rupee → Sri Lankan Rupee
1 INR = 3.444395 LKR(1 LKR = 0.290327 INR)
Currency converter
1 INR =
3.4444 LKR
INR to LKR: last 30 days
Over the last 30 days, 1 INR traded between 3.4272 and 3.4736 LKR, averaging 3.4503 LKR. The INR/LKR rate is up 0.16% since 2026-08-28.
- 30-day high
- 3.4736
- 2026-09-05
- 30-day low
- 3.4272
- 2026-09-15
- 30-day average
- 3.4503
- Days with data: 30
- 30-day change
- +0.16%
- since 2026-08-28
3.4736
3.42722026-08-28 → 2026-09-26
| Date | 1 INR in LKR | Daily change |
|---|---|---|
| 2026-09-26 | 3.4444 | 0.00% |
| 2026-09-25 | 3.4444 | +0.18% |
| 2026-09-24 | 3.4383 | -0.01% |
| 2026-09-23 | 3.4387 | -0.62% |
| 2026-09-22 | 3.4601 | +0.21% |
| 2026-09-21 | 3.4527 | +0.10% |
| 2026-09-20 | 3.4492 | -0.12% |
| 2026-09-19 | 3.4535 | -0.15% |
| 2026-09-18 | 3.4588 | -0.18% |
| 2026-09-17 | 3.4649 | +0.89% |
| 2026-09-16 | 3.4344 | +0.21% |
| 2026-09-15 | 3.4272 | -0.30% |
| 2026-09-14 | 3.4376 | -0.03% |
| 2026-09-13 | 3.4386 | -0.00% |
| 2026-09-12 | 3.4388 | +0.01% |
| Date | 1 INR in LKR | Daily change |
|---|---|---|
| 2026-09-11 | 3.4383 | -0.13% |
| 2026-09-10 | 3.4427 | -0.28% |
| 2026-09-09 | 3.4522 | -0.20% |
| 2026-09-08 | 3.4592 | -0.39% |
| 2026-09-07 | 3.4728 | +0.02% |
| 2026-09-06 | 3.4723 | -0.04% |
| 2026-09-05 | 3.4736 | +0.12% |
| 2026-09-04 | 3.4694 | -0.08% |
| 2026-09-03 | 3.472 | +0.53% |
| 2026-09-02 | 3.4537 | +0.00% |
| 2026-09-01 | 3.4536 | +0.02% |
| 2026-08-31 | 3.4529 | +0.45% |
| 2026-08-30 | 3.4374 | -0.04% |
| 2026-08-29 | 3.4388 | -0.01% |
| 2026-08-28 | 3.439 | — |
INR to LKR conversion table
1 INR3.4444 LKR
5 INR17.222 LKR
10 INR34.4439 LKR
25 INR86.1099 LKR
50 INR172.2197 LKR
100 INR344.4395 LKR
500 INR1,722.1973 LKR
1,000 INR3,444.3946 LKR
5,000 INR17,221.973 LKR
10,000 INR34,443.946 LKR
Get the INR/LKR rate in your app
One GET request returns the latest INR → LKR 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/LKR"fetch('https://rate-api.com/api/v1/pair/INR/LKR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} LKR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/LKR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} LKR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/LKR');
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']} LKR\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "LKR"
},
"rate": 3.4444,
"timestamp": 1790429434,
"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
LKR to INRSri Lankan Rupee → Indian Rupee0.29033Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.