Convert ILS to USD
Israeli New Shekel → US Dollar
1 ILS = 0.329624 USD(1 USD = 3.033763 ILS)
Currency converter
1 ILS =
0.32962 USD
ILS to USD: last 30 days
Over the last 30 days, 1 ILS traded between 0.3275 and 0.33638 USD, averaging 0.33102 USD. The ILS/USD rate is down 2.01% since 2026-08-28.
- 30-day high
- 0.33638
- 2026-08-28
- 30-day low
- 0.3275
- 2026-09-14
- 30-day average
- 0.33102
- Days with data: 30
- 30-day change
- -2.01%
- since 2026-08-28
0.33638
0.32752026-08-28 → 2026-09-26
| Date | 1 ILS in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.32962 | 0.00% |
| 2026-09-25 | 0.32962 | +0.48% |
| 2026-09-24 | 0.32806 | -1.05% |
| 2026-09-23 | 0.33155 | +0.06% |
| 2026-09-22 | 0.33137 | -0.21% |
| 2026-09-21 | 0.33206 | +0.87% |
| 2026-09-20 | 0.3292 | 0.00% |
| 2026-09-19 | 0.3292 | 0.00% |
| 2026-09-18 | 0.3292 | -0.14% |
| 2026-09-17 | 0.32967 | -0.07% |
| 2026-09-16 | 0.3299 | +0.33% |
| 2026-09-15 | 0.32881 | +0.40% |
| 2026-09-14 | 0.3275 | -0.27% |
| 2026-09-13 | 0.32837 | 0.00% |
| 2026-09-12 | 0.32837 | 0.00% |
| Date | 1 ILS in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.32837 | -0.50% |
| 2026-09-10 | 0.33002 | -0.36% |
| 2026-09-09 | 0.33121 | -0.25% |
| 2026-09-08 | 0.33203 | -0.03% |
| 2026-09-07 | 0.33214 | -0.11% |
| 2026-09-06 | 0.33249 | 0.00% |
| 2026-09-05 | 0.33249 | 0.00% |
| 2026-09-04 | 0.33249 | +0.39% |
| 2026-09-03 | 0.3312 | +0.30% |
| 2026-09-02 | 0.3302 | -0.46% |
| 2026-09-01 | 0.33173 | -0.89% |
| 2026-08-31 | 0.33469 | -0.50% |
| 2026-08-30 | 0.33638 | 0.00% |
| 2026-08-29 | 0.33638 | 0.00% |
| 2026-08-28 | 0.33638 | — |
ILS to USD conversion table
1 ILS0.32962 USD
5 ILS1.6481 USD
10 ILS3.2962 USD
25 ILS8.2406 USD
50 ILS16.4812 USD
100 ILS32.9624 USD
500 ILS164.8118 USD
1,000 ILS329.6236 USD
5,000 ILS1,648.1182 USD
10,000 ILS3,296.2363 USD
Get the ILS/USD rate in your app
One GET request returns the latest ILS → USD 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/ILS/USD"fetch('https://rate-api.com/api/v1/pair/ILS/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ILS = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ILS/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ILS = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ILS/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ILS = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "ILS",
"to": "USD"
},
"rate": 0.3296,
"timestamp": 1790432043,
"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
USD to ILSUS Dollar → Israeli New Shekel3.0338Convert ILS to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.