Convert INR to KES
Indian Rupee → Kenyan Shilling
1 INR = 1.351917 KES(1 KES = 0.739691 INR)
Currency converter
1 INR =
1.3519 KES
INR to KES: last 30 days
Over the last 30 days, 1 INR traded between 1.3491 and 1.3699 KES, averaging 1.3576 KES. The INR/KES rate is down 0.37% since 2026-08-28.
- 30-day high
- 1.3699
- 2026-09-05
- 30-day low
- 1.3491
- 2026-09-15
- 30-day average
- 1.3576
- Days with data: 30
- 30-day change
- -0.37%
- since 2026-08-28
1.3699
1.34912026-08-28 → 2026-09-26
| Date | 1 INR in KES | Daily change |
|---|---|---|
| 2026-09-26 | 1.3519 | 0.00% |
| 2026-09-25 | 1.3519 | +0.17% |
| 2026-09-24 | 1.3496 | -0.19% |
| 2026-09-23 | 1.3522 | -0.21% |
| 2026-09-22 | 1.355 | +0.27% |
| 2026-09-21 | 1.3513 | +0.03% |
| 2026-09-20 | 1.3508 | +0.02% |
| 2026-09-19 | 1.3506 | -0.17% |
| 2026-09-18 | 1.3528 | +0.17% |
| 2026-09-17 | 1.3505 | -0.04% |
| 2026-09-16 | 1.351 | +0.14% |
| 2026-09-15 | 1.3491 | -0.40% |
| 2026-09-14 | 1.3546 | +0.02% |
| 2026-09-13 | 1.3544 | -0.01% |
| 2026-09-12 | 1.3545 | +0.02% |
| Date | 1 INR in KES | Daily change |
|---|---|---|
| 2026-09-11 | 1.3543 | -0.14% |
| 2026-09-10 | 1.3561 | -0.34% |
| 2026-09-09 | 1.3608 | -0.30% |
| 2026-09-08 | 1.3649 | -0.36% |
| 2026-09-07 | 1.3698 | +0.01% |
| 2026-09-06 | 1.3697 | -0.01% |
| 2026-09-05 | 1.3699 | +0.00% |
| 2026-09-04 | 1.3698 | +0.01% |
| 2026-09-03 | 1.3698 | +0.50% |
| 2026-09-02 | 1.363 | -0.08% |
| 2026-09-01 | 1.364 | +0.03% |
| 2026-08-31 | 1.3636 | +0.49% |
| 2026-08-30 | 1.3569 | +0.00% |
| 2026-08-29 | 1.3569 | +0.00% |
| 2026-08-28 | 1.3569 | — |
INR to KES conversion table
1 INR1.3519 KES
5 INR6.7596 KES
10 INR13.5192 KES
25 INR33.7979 KES
50 INR67.5958 KES
100 INR135.1917 KES
500 INR675.9583 KES
1,000 INR1,351.9165 KES
5,000 INR6,759.5827 KES
10,000 INR13,519.165 KES
Get the INR/KES rate in your app
One GET request returns the latest INR → KES 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/KES"fetch('https://rate-api.com/api/v1/pair/INR/KES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} KES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/KES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} KES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/KES');
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']} KES\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "KES"
},
"rate": 1.3519,
"timestamp": 1790429450,
"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
KES to INRKenyan Shilling → Indian Rupee0.73969Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.