Convert KWD to EUR
Kuwaiti Dinar → Euro
1 KWD = 2.839637 EUR(1 EUR = 0.352158 KWD)
Currency converter
1 KWD =
2.8396 EUR
KWD to EUR: last 30 days
Over the last 30 days, 1 KWD traded between 2.7788 and 2.8453 EUR, averaging 2.8049 EUR. The KWD/EUR rate is up 2.10% since 2026-08-28.
- 30-day high
- 2.8453
- 2026-09-24
- 30-day low
- 2.7788
- 2026-09-09
- 30-day average
- 2.8049
- Days with data: 30
- 30-day change
- +2.10%
- since 2026-08-28
2.8453
2.77882026-08-28 → 2026-09-26
| Date | 1 KWD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 2.8396 | 0.00% |
| 2026-09-25 | 2.8396 | -0.20% |
| 2026-09-24 | 2.8453 | +0.22% |
| 2026-09-23 | 2.839 | +0.41% |
| 2026-09-22 | 2.8275 | +0.15% |
| 2026-09-21 | 2.8234 | -0.23% |
| 2026-09-20 | 2.83 | -0.04% |
| 2026-09-19 | 2.8312 | -0.17% |
| 2026-09-18 | 2.8359 | +0.54% |
| 2026-09-17 | 2.8208 | +0.48% |
| 2026-09-16 | 2.8074 | +0.02% |
| 2026-09-15 | 2.8068 | +0.05% |
| 2026-09-14 | 2.8053 | +0.15% |
| 2026-09-13 | 2.8012 | +0.13% |
| 2026-09-12 | 2.7975 | +0.03% |
| Date | 1 KWD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 2.7967 | +0.27% |
| 2026-09-10 | 2.7892 | +0.37% |
| 2026-09-09 | 2.7788 | -0.34% |
| 2026-09-08 | 2.7883 | +0.14% |
| 2026-09-07 | 2.7844 | -0.03% |
| 2026-09-06 | 2.7851 | +0.02% |
| 2026-09-05 | 2.7847 | -0.02% |
| 2026-09-04 | 2.7851 | -0.03% |
| 2026-09-03 | 2.7861 | -0.24% |
| 2026-09-02 | 2.7927 | +0.02% |
| 2026-09-01 | 2.7921 | +0.01% |
| 2026-08-31 | 2.7919 | +0.41% |
| 2026-08-30 | 2.7805 | -0.00% |
| 2026-08-29 | 2.7806 | -0.03% |
| 2026-08-28 | 2.7813 | — |
KWD to EUR conversion table
1 KWD2.8396 EUR
5 KWD14.1982 EUR
10 KWD28.3964 EUR
25 KWD70.9909 EUR
50 KWD141.9819 EUR
100 KWD283.9637 EUR
500 KWD1,419.8187 EUR
1,000 KWD2,839.6374 EUR
5,000 KWD14,198.187 EUR
10,000 KWD28,396.374 EUR
Get the KWD/EUR rate in your app
One GET request returns the latest KWD → EUR 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/KWD/EUR"fetch('https://rate-api.com/api/v1/pair/KWD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 KWD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/KWD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 KWD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/KWD/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 KWD = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "KWD",
"to": "EUR"
},
"rate": 2.8396,
"timestamp": 1790435261,
"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
EUR to KWDEuro → Kuwaiti Dinar0.35216Convert KWD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.