Convert RUB to KES
Russian Ruble → Kenyan Shilling
1 RUB = 1.523731 KES(1 KES = 0.656284 RUB)
Currency converter
1 RUB =
1.5237 KES
RUB to KES: last 30 days
Over the last 30 days, 1 RUB traded between 1.4826 and 1.5464 KES, averaging 1.5196 KES. The RUB/KES rate is up 0.62% since 2026-08-28.
- 30-day high
- 1.5464
- 2026-09-22
- 30-day low
- 1.4826
- 2026-09-03
- 30-day average
- 1.5196
- Days with data: 30
- 30-day change
- +0.62%
- since 2026-08-28
1.5464
1.48262026-08-28 → 2026-09-26
| Date | 1 RUB in KES | Daily change |
|---|---|---|
| 2026-09-26 | 1.5237 | 0.00% |
| 2026-09-25 | 1.5237 | -0.18% |
| 2026-09-24 | 1.5265 | -0.60% |
| 2026-09-23 | 1.5357 | -0.69% |
| 2026-09-22 | 1.5464 | +0.52% |
| 2026-09-21 | 1.5384 | -0.13% |
| 2026-09-20 | 1.5403 | +0.39% |
| 2026-09-19 | 1.5343 | -0.05% |
| 2026-09-18 | 1.535 | -0.21% |
| 2026-09-17 | 1.5383 | -0.10% |
| 2026-09-16 | 1.5398 | +0.52% |
| 2026-09-15 | 1.5319 | +0.04% |
| 2026-09-14 | 1.5313 | -0.28% |
| 2026-09-13 | 1.5356 | -0.12% |
| 2026-09-12 | 1.5375 | -0.26% |
| Date | 1 RUB in KES | Daily change |
|---|---|---|
| 2026-09-11 | 1.5414 | +1.22% |
| 2026-09-10 | 1.5228 | +1.00% |
| 2026-09-09 | 1.5076 | +0.45% |
| 2026-09-08 | 1.5009 | +0.44% |
| 2026-09-07 | 1.4944 | -0.05% |
| 2026-09-06 | 1.4952 | -0.86% |
| 2026-09-05 | 1.5082 | +0.97% |
| 2026-09-04 | 1.4936 | +0.74% |
| 2026-09-03 | 1.4826 | -0.55% |
| 2026-09-02 | 1.4908 | -0.64% |
| 2026-09-01 | 1.5004 | -0.61% |
| 2026-08-31 | 1.5095 | +0.32% |
| 2026-08-30 | 1.5048 | +0.19% |
| 2026-08-29 | 1.5019 | -0.82% |
| 2026-08-28 | 1.5144 | — |
RUB to KES conversion table
1 RUB1.5237 KES
5 RUB7.6187 KES
10 RUB15.2373 KES
25 RUB38.0933 KES
50 RUB76.1865 KES
100 RUB152.3731 KES
500 RUB761.8654 KES
1,000 RUB1,523.7309 KES
5,000 RUB7,618.6543 KES
10,000 RUB15,237.309 KES
Get the RUB/KES rate in your app
One GET request returns the latest RUB → 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/RUB/KES"fetch('https://rate-api.com/api/v1/pair/RUB/KES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} KES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/KES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} KES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/KES');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} KES\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "KES"
},
"rate": 1.5237,
"timestamp": 1790429366,
"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 RUBKenyan Shilling → Russian Ruble0.65628Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.