Public Holidays in Idaho, United States 2028
26 total holidays25 national1 regional
2028 Holiday Calendar — Idaho
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2028-01-01 | New Year's Day | Saturday | National |
| 2028-01-06 | Epiphany | Thursday | National |
| 2028-01-09 | Asarah B'Tevet | Sunday | National |
| 2028-01-17 | Idaho Human Rights Day | Monday | Idaho |
| 2028-01-17 | Martin Luther King Jr. Day | Monday | National |
| 2028-02-21 | Presidents' Day | Monday | National |
| 2028-03-01 | Ash Wednesday | Wednesday | National |
| 2028-04-16 | Easter Sunday | Sunday | National |
| 2028-04-17 | Easter Monday | Monday | National |
| 2028-05-25 | Ascension Day | Thursday | National |
| 2028-05-29 | Memorial Day | Monday | National |
| 2028-06-03 | Ashura | Saturday | National |
| 2028-06-11 | Trinity Sunday | Sunday | National |
| 2028-06-15 | Corpus Christi | Thursday | National |
| 2028-08-15 | Assumption of Mary | Tuesday | National |
| 2028-09-04 | Labor Day | Monday | National |
| 2028-10-04 | Feast of St Francis of Assisi | Wednesday | National |
| 2028-11-01 | All Saints' Day | Wednesday | National |
| 2028-11-02 | All Souls' Day | Thursday | National |
| 2028-11-10 | Veterans Day | Friday | National |
| 2028-11-11 | Veterans Day | Saturday | National |
| 2028-11-23 | Thanksgiving Day | Thursday | National |
| 2028-12-08 | Feast of the Immaculate Conception | Friday | National |
| 2028-12-12 | Feast of Our Lady of Guadalupe | Tuesday | National |
| 2028-12-25 | Christmas Day | Monday | National |
| 2028-12-28 | Asarah B'Tevet | Thursday | National |
Automate Idaho holiday data via API
One API call. Filter by region code. Integrate in minutes.
cURL
curl -X GET \ "https://api.holidays.rest/v1/holidays?country=US&year=2028" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Idaho
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=US&year=2028",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Idaho (ISO code: ID)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("ID")
);