Convert EUR to ILS
Euro → Israeli New Shekel
1 EUR = 3.4594 ILS(1 ILS = 0.289067 EUR)
Currency converter
1 EUR =
3.4594 ILS
EUR to ILS: last 30 days
Over the last 30 days, 1 EUR traded between 3.4417 and 3.5301 ILS, averaging 3.489 ILS. The EUR/ILS rate is down 0.05% since 2026-08-29.
- 30-day high
- 3.5301
- 2026-09-11
- 30-day low
- 3.4417
- 2026-09-23
- 30-day average
- 3.489
- Days with data: 30
- 30-day change
- -0.05%
- since 2026-08-29
3.5301
3.44172026-08-29 → 2026-09-27
| Date | 1 EUR in ILS | Daily change |
|---|---|---|
| 2026-09-27 | 3.4594 | 0.00% |
| 2026-09-26 | 3.4594 | 0.00% |
| 2026-09-25 | 3.4594 | -0.16% |
| 2026-09-24 | 3.4649 | +0.67% |
| 2026-09-23 | 3.4417 | -0.51% |
| 2026-09-22 | 3.4593 | -0.03% |
| 2026-09-21 | 3.4602 | -0.60% |
| 2026-09-20 | 3.4812 | 0.00% |
| 2026-09-19 | 3.4812 | 0.00% |
| 2026-09-18 | 3.4812 | -0.04% |
| 2026-09-17 | 3.4825 | -0.42% |
| 2026-09-16 | 3.4971 | -0.35% |
| 2026-09-15 | 3.5093 | -0.50% |
| 2026-09-14 | 3.527 | -0.09% |
| 2026-09-13 | 3.5301 | 0.00% |
| Date | 1 EUR in ILS | Daily change |
|---|---|---|
| 2026-09-12 | 3.5301 | 0.00% |
| 2026-09-11 | 3.5301 | +0.29% |
| 2026-09-10 | 3.5198 | +0.05% |
| 2026-09-09 | 3.518 | +0.57% |
| 2026-09-08 | 3.4979 | -0.04% |
| 2026-09-07 | 3.4991 | +0.11% |
| 2026-09-06 | 3.4954 | 0.00% |
| 2026-09-05 | 3.4954 | 0.00% |
| 2026-09-04 | 3.4954 | -0.33% |
| 2026-09-03 | 3.5069 | +0.01% |
| 2026-09-02 | 3.5064 | +0.36% |
| 2026-09-01 | 3.4938 | +0.84% |
| 2026-08-31 | 3.4646 | +0.10% |
| 2026-08-30 | 3.4612 | 0.00% |
| 2026-08-29 | 3.4612 | — |
EUR to ILS conversion table
1 EUR3.4594 ILS
5 EUR17.297 ILS
10 EUR34.594 ILS
25 EUR86.485 ILS
50 EUR172.97 ILS
100 EUR345.94 ILS
500 EUR1,729.7 ILS
1,000 EUR3,459.4 ILS
5,000 EUR17,297 ILS
10,000 EUR34,594 ILS
Get the EUR/ILS rate in your app
One GET request returns the latest EUR → ILS 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/ILS"fetch('https://rate-api.com/api/v1/pair/EUR/ILS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} ILS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/ILS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} ILS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/ILS');
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']} ILS\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "ILS"
},
"rate": 3.4594,
"timestamp": 1790470785,
"date": "2026-09-27"
}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
ILS to EURIsraeli New Shekel → Euro0.28907Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.