Convert AUD to ILS
Australian Dollar → Israeli New Shekel
1 AUD = 2.132799 ILS(1 ILS = 0.468867 AUD)
Currency converter
1 AUD =
2.1328 ILS
AUD to ILS: last 30 days
Over the last 30 days, 1 AUD traded between 2.1316 and 2.1843 ILS, averaging 2.1596 ILS. The AUD/ILS rate is down 0.28% since 2026-08-28.
- 30-day high
- 2.1843
- 2026-09-11
- 30-day low
- 2.1316
- 2026-09-23
- 30-day average
- 2.1596
- Days with data: 30
- 30-day change
- -0.28%
- since 2026-08-28
2.1843
2.13162026-08-28 → 2026-09-26
| Date | 1 AUD in ILS | Daily change |
|---|---|---|
| 2026-09-26 | 2.1328 | 0.00% |
| 2026-09-25 | 2.1328 | -0.42% |
| 2026-09-24 | 2.1419 | +0.48% |
| 2026-09-23 | 2.1316 | -0.66% |
| 2026-09-22 | 2.1458 | -0.18% |
| 2026-09-21 | 2.1495 | -0.61% |
| 2026-09-20 | 2.1628 | 0.00% |
| 2026-09-19 | 2.1628 | 0.00% |
| 2026-09-18 | 2.1628 | +0.23% |
| 2026-09-17 | 2.1579 | -0.19% |
| 2026-09-16 | 2.1619 | -0.24% |
| 2026-09-15 | 2.1671 | -0.45% |
| 2026-09-14 | 2.177 | -0.33% |
| 2026-09-13 | 2.1843 | 0.00% |
| 2026-09-12 | 2.1843 | 0.00% |
| Date | 1 AUD in ILS | Daily change |
|---|---|---|
| 2026-09-11 | 2.1843 | +0.33% |
| 2026-09-10 | 2.1771 | -0.19% |
| 2026-09-09 | 2.1813 | +0.39% |
| 2026-09-08 | 2.1729 | +0.03% |
| 2026-09-07 | 2.1721 | +0.26% |
| 2026-09-06 | 2.1665 | 0.00% |
| 2026-09-05 | 2.1665 | 0.00% |
| 2026-09-04 | 2.1665 | -0.24% |
| 2026-09-03 | 2.1718 | +0.33% |
| 2026-09-02 | 2.1646 | +0.55% |
| 2026-09-01 | 2.1528 | +0.61% |
| 2026-08-31 | 2.1398 | +0.04% |
| 2026-08-30 | 2.1389 | 0.00% |
| 2026-08-29 | 2.1389 | 0.00% |
| 2026-08-28 | 2.1389 | — |
AUD to ILS conversion table
1 AUD2.1328 ILS
5 AUD10.664 ILS
10 AUD21.328 ILS
25 AUD53.32 ILS
50 AUD106.64 ILS
100 AUD213.2799 ILS
500 AUD1,066.3995 ILS
1,000 AUD2,132.799 ILS
5,000 AUD10,663.995 ILS
10,000 AUD21,327.99 ILS
Get the AUD/ILS rate in your app
One GET request returns the latest AUD → 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/AUD/ILS"fetch('https://rate-api.com/api/v1/pair/AUD/ILS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} ILS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/ILS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} ILS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/ILS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} ILS\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "ILS"
},
"rate": 2.1328,
"timestamp": 1790429288,
"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 AUDIsraeli New Shekel → Australian Dollar0.46887Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.