Convert EUR to KES
Euro → Kenyan Shilling
1 EUR = 147.71108 KES(1 KES = 0.00676997 EUR)
Currency converter
1 EUR =
147.7111 KES
EUR to KES: last 30 days
Over the last 30 days, 1 EUR traded between 147.2094 and 150.8091 KES, averaging 149.5492 KES. The EUR/KES rate is down 1.98% since 2026-08-28.
- 30-day high
- 150.8091
- 2026-09-09
- 30-day low
- 147.2094
- 2026-09-24
- 30-day average
- 149.5492
- Days with data: 30
- 30-day change
- -1.98%
- since 2026-08-28
150.8091
147.20942026-08-28 → 2026-09-26
| Date | 1 EUR in KES | Daily change |
|---|---|---|
| 2026-09-26 | 147.7111 | 0.00% |
| 2026-09-25 | 147.7111 | +0.34% |
| 2026-09-24 | 147.2094 | -0.35% |
| 2026-09-23 | 147.7264 | -0.50% |
| 2026-09-22 | 148.472 | -0.20% |
| 2026-09-21 | 148.7711 | +0.23% |
| 2026-09-20 | 148.4276 | +0.02% |
| 2026-09-19 | 148.3982 | -0.17% |
| 2026-09-18 | 148.6477 | -0.07% |
| 2026-09-17 | 148.7587 | -0.54% |
| 2026-09-16 | 149.5716 | +0.13% |
| 2026-09-15 | 149.3846 | -0.09% |
| 2026-09-14 | 149.5198 | -0.34% |
| 2026-09-13 | 150.0284 | -0.01% |
| 2026-09-12 | 150.0481 | +0.02% |
| Date | 1 EUR in KES | Daily change |
|---|---|---|
| 2026-09-11 | 150.0208 | -0.22% |
| 2026-09-10 | 150.3463 | -0.31% |
| 2026-09-09 | 150.8091 | +0.33% |
| 2026-09-08 | 150.32 | -0.07% |
| 2026-09-07 | 150.4216 | +0.01% |
| 2026-09-06 | 150.4111 | -0.01% |
| 2026-09-05 | 150.4315 | +0.00% |
| 2026-09-04 | 150.4302 | +0.07% |
| 2026-09-03 | 150.3305 | +0.31% |
| 2026-09-02 | 149.8651 | -0.16% |
| 2026-09-01 | 150.1082 | -0.25% |
| 2026-08-31 | 150.4883 | -0.14% |
| 2026-08-30 | 150.7047 | +0.00% |
| 2026-08-29 | 150.7023 | +0.00% |
| 2026-08-28 | 150.6994 | — |
EUR to KES conversion table
1 EUR147.7111 KES
5 EUR738.5554 KES
10 EUR1,477.1108 KES
25 EUR3,692.7769 KES
50 EUR7,385.5539 KES
100 EUR14,771.108 KES
500 EUR73,855.539 KES
1,000 EUR147,711.08 KES
5,000 EUR738,555.39 KES
10,000 EUR1,477,110.8 KES
Get the EUR/KES rate in your app
One GET request returns the latest EUR → 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/EUR/KES"fetch('https://rate-api.com/api/v1/pair/EUR/KES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} KES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/KES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} KES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/KES');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} KES\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "KES"
},
"rate": 147.7111,
"timestamp": 1790429445,
"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 EURKenyan Shilling → Euro0.00677Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.