Yerushalayim, Israel

Accurate, up-to-date public holidays, bank holidays, and observances in Yerushalayim, Israel for 2025 ready to be integrated into your application.

The State of Israel, established on May 14, 1948, is a Middle Eastern country located in Western Asia, along the Mediterranean Sea. Evidence of the earliest hominid, migrated from Africa, can be traced back to Israel. Israel is a Holy Land, which Jews, Christians and Muslims regard as sacred, and is home to Jerusalem, Temple Mount, the Western Wailing Wall, the Church of the Holy Sepulture, and the Sea of Galilee.

Want to include this holiday information in your website or application? Get started for free.

Jump to: January | February | March | April | May | June | July | August | September | October | November | December
Date Weekday Name Notes
February 28th Friday Family Day
March 13th Thursday Erev Purim Long weekend.
March 14th Friday Purim (Tel Aviv)
April 12th Saturday Erev Pesach
April 13th Sunday Pesach Long weekend.
April 14th Monday Second Day of Pesach
April 15th Tuesday Third Day of Pesach
April 16th Wednesday Fourth Day of Pesach
April 17th Thursday Fifth Day of Pesach Long weekend.
April 18th Friday Sixth Day of Pesach
April 19th Saturday Seventh Day of Pesach
April 24th Thursday Yom Ha'shoah Long weekend.
April 30th Wednesday Yom Ha'zikaron
May 1st Thursday Yom Ha'atzmaut Long weekend.
May 1st Thursday Father's Day Long weekend.
May 15th Thursday Erev Lag B'Omer Long weekend.
May 16th Friday Lag B'Omer
May 26th Monday Yom Yerushalayim
June 1st Sunday Erev Shavuot Long weekend.
June 2nd Monday Shavuot
August 2nd Saturday Erev Tisha B'Av
August 3rd Sunday Tisha B'Av Long weekend.
September 22nd Monday Erev Rosh Hashanah
September 23rd Tuesday Rosh Hashanah
September 24th Wednesday Second Day of Rosh Hashanah
October 1st Wednesday Erev Yom Kippur
October 2nd Thursday Yom Kippur Long weekend.
October 6th Monday Erev Sukkot
October 7th Tuesday Sukkot
October 8th Wednesday Second Day of Sukkot
October 9th Thursday Third Day of Sukkot Long weekend.
October 10th Friday Fourth Day of Sukkot
October 11th Saturday Fifth Day of Sukkot
October 12th Sunday Sixth Day of Sukkot Long weekend.
October 13th Monday Seventh Day of Sukkot
October 14th Tuesday Simchat Torah
December 15th Monday Hanukkah
December 16th Tuesday Second Day of Hanukkah
December 17th Wednesday Third Day of Hanukkah
December 18th Thursday Fourth Day of Hanukkah Long weekend.
December 19th Friday Fifth Day of Hanukkah
December 20th Saturday Sixth Day of Hanukkah
December 21st Sunday Seventh Day of Hanukkah Long weekend.
December 22nd Monday Eighth Day of Hanukkah
Public holidays (national, legal, government, civic, etc) are denoted in bold.
Holiday data for far-reaching years is subject to change due to laws and government decrees.
Long weekends are based on non-working days and not Saturday and Sunday explicitly.

We are continuously monitoring for changes to this data to ensure we're providing the most accurate information possible.
If you happen to notice a mistake, please get in touch.
2024Browse all countries2026
To retrieve this list of holidays, simply make a GET request to /v1/holidays:
GET /v1/holidays
Copy
$ curl -G -d country="IL-JM" -d year="2025" -d pretty
-d key="__YOUR_API_KEY__"
"https://holidayapi.com/v1/holidays"
import "github.com/joshtronic/go-holidayapi"
hapi := holidayapi.NewV1("__YOUR_API_KEY__")
holidays, err := hapi.Holidays(map[string]interface{}{
  "country": "IL-JM",
  "year": "2025",
})
import { HolidayAPI } from 'holidayapi';
const key = '__YOUR_API_KEY__'
const holidayApi = new HolidayAPI({ key });
holidayApi.holidays({
  country: 'IL-JM',
  year: '2025',
});
$key = '__YOUR_API_KEY__';
$holiday_api = new \HolidayAPI\Client(['key' => $key]);
$holidays = $holiday_api->holidays([
  'country' => 'IL-JM',
  'year' => '2025',
]);
$Body = @{}
$Body.key = "__YOUR_API_KEY__"
$Body.country = "IL-JM"
$Body.year = "2025"
$Result = Invoke-RestMethod -Uri $Url -Body $Body
$Result.holidays
import holidayapi
key = '__YOUR_API_KEY__'
hapi = holidayapi.v1(key)
holidays = hapi.holidays({
  'country': 'IL-JM',
  'year': '2025',
})
require 'ruby-holidayapi'
key = '__YOUR_API_KEY__'
hapi = HolidayAPI::V1.new(key)
holidays = hapi.holidays({
  'country': 'IL-JM',
  'year': '2025',
})