Convert GBP to ILS
British Pound → Israeli New Shekel
1 GBP = 4.020454 ILS(1 ILS = 0.248728 GBP)
Currency converter
1 GBP =
4.0205 ILS
GBP to ILS: last 30 days
Over the last 30 days, 1 GBP traded between 4.0043 and 4.1204 ILS, averaging 4.0644 ILS. The GBP/ILS rate is down 0.43% since 2026-08-29.
- 30-day high
- 4.1204
- 2026-09-14
- 30-day low
- 4.0043
- 2026-09-23
- 30-day average
- 4.0644
- Days with data: 30
- 30-day change
- -0.43%
- since 2026-08-29
4.1204
4.00432026-08-29 → 2026-09-27
| Date | 1 GBP in ILS | Daily change |
|---|---|---|
| 2026-09-27 | 4.0205 | 0.00% |
| 2026-09-26 | 4.0205 | 0.00% |
| 2026-09-25 | 4.0205 | -0.23% |
| 2026-09-24 | 4.0296 | +0.63% |
| 2026-09-23 | 4.0043 | -0.71% |
| 2026-09-22 | 4.0328 | -0.03% |
| 2026-09-21 | 4.0338 | -0.49% |
| 2026-09-20 | 4.0536 | 0.00% |
| 2026-09-19 | 4.0536 | 0.00% |
| 2026-09-18 | 4.0536 | -0.10% |
| 2026-09-17 | 4.0575 | -0.52% |
| 2026-09-16 | 4.0787 | -0.53% |
| 2026-09-15 | 4.1007 | -0.48% |
| 2026-09-14 | 4.1204 | +0.17% |
| 2026-09-13 | 4.1136 | 0.00% |
| Date | 1 GBP in ILS | Daily change |
|---|---|---|
| 2026-09-12 | 4.1136 | 0.00% |
| 2026-09-11 | 4.1136 | +0.41% |
| 2026-09-10 | 4.0968 | +0.03% |
| 2026-09-09 | 4.0955 | +0.39% |
| 2026-09-08 | 4.0796 | +0.14% |
| 2026-09-07 | 4.0738 | +0.11% |
| 2026-09-06 | 4.0693 | 0.00% |
| 2026-09-05 | 4.0693 | 0.00% |
| 2026-09-04 | 4.0693 | -0.14% |
| 2026-09-03 | 4.0752 | -0.20% |
| 2026-09-02 | 4.0834 | +0.11% |
| 2026-09-01 | 4.0789 | +0.83% |
| 2026-08-31 | 4.0452 | +0.18% |
| 2026-08-30 | 4.0378 | 0.00% |
| 2026-08-29 | 4.0378 | — |
GBP to ILS conversion table
1 GBP4.0205 ILS
5 GBP20.1023 ILS
10 GBP40.2045 ILS
25 GBP100.5114 ILS
50 GBP201.0227 ILS
100 GBP402.0454 ILS
500 GBP2,010.2272 ILS
1,000 GBP4,020.4544 ILS
5,000 GBP20,102.272 ILS
10,000 GBP40,204.544 ILS
Get the GBP/ILS rate in your app
One GET request returns the latest GBP → 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/GBP/ILS"fetch('https://rate-api.com/api/v1/pair/GBP/ILS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} ILS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/ILS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} ILS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/ILS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} ILS\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "ILS"
},
"rate": 4.0205,
"timestamp": 1790478856,
"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 GBPIsraeli New Shekel → British Pound0.24873Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.