Convert USD to ILS
US Dollar → Israeli New Shekel
1 USD = 3.033763 ILS(1 ILS = 0.329624 USD)
Currency converter
1 USD =
3.0338 ILS
USD to ILS: last 30 days
Over the last 30 days, 1 USD traded between 2.9728 and 3.0534 ILS, averaging 3.0211 ILS. The USD/ILS rate is up 2.05% since 2026-08-28.
- 30-day high
- 3.0534
- 2026-09-14
- 30-day low
- 2.9728
- 2026-08-28
- 30-day average
- 3.0211
- Days with data: 30
- 30-day change
- +2.05%
- since 2026-08-28
3.0534
2.97282026-08-28 → 2026-09-26
| Date | 1 USD in ILS | Daily change |
|---|---|---|
| 2026-09-26 | 3.0338 | 0.00% |
| 2026-09-25 | 3.0338 | -0.47% |
| 2026-09-24 | 3.0482 | +1.06% |
| 2026-09-23 | 3.0161 | -0.06% |
| 2026-09-22 | 3.0178 | +0.21% |
| 2026-09-21 | 3.0115 | -0.86% |
| 2026-09-20 | 3.0377 | 0.00% |
| 2026-09-19 | 3.0377 | 0.00% |
| 2026-09-18 | 3.0377 | +0.15% |
| 2026-09-17 | 3.0333 | +0.07% |
| 2026-09-16 | 3.0312 | -0.33% |
| 2026-09-15 | 3.0413 | -0.40% |
| 2026-09-14 | 3.0534 | +0.27% |
| 2026-09-13 | 3.0453 | 0.00% |
| 2026-09-12 | 3.0453 | 0.00% |
| Date | 1 USD in ILS | Daily change |
|---|---|---|
| 2026-09-11 | 3.0453 | +0.50% |
| 2026-09-10 | 3.0301 | +0.36% |
| 2026-09-09 | 3.0192 | +0.25% |
| 2026-09-08 | 3.0118 | +0.03% |
| 2026-09-07 | 3.0108 | +0.11% |
| 2026-09-06 | 3.0076 | 0.00% |
| 2026-09-05 | 3.0076 | 0.00% |
| 2026-09-04 | 3.0076 | -0.39% |
| 2026-09-03 | 3.0193 | -0.30% |
| 2026-09-02 | 3.0285 | +0.46% |
| 2026-09-01 | 3.0145 | +0.89% |
| 2026-08-31 | 2.9878 | +0.50% |
| 2026-08-30 | 2.9728 | 0.00% |
| 2026-08-29 | 2.9728 | 0.00% |
| 2026-08-28 | 2.9728 | — |
USD to ILS conversion table
1 USD3.0338 ILS
5 USD15.1688 ILS
10 USD30.3376 ILS
25 USD75.8441 ILS
50 USD151.6882 ILS
100 USD303.3763 ILS
500 USD1,516.8815 ILS
1,000 USD3,033.763 ILS
5,000 USD15,168.815 ILS
10,000 USD30,337.63 ILS
Get the USD/ILS rate in your app
One GET request returns the latest USD → 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/USD/ILS"fetch('https://rate-api.com/api/v1/pair/USD/ILS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} ILS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/ILS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} ILS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/ILS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} ILS\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "ILS"
},
"rate": 3.0338,
"timestamp": 1790429290,
"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
ILS to USDIsraeli New Shekel → US Dollar0.32962Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.