Public Holidays in Rhode Island, United States 2027
28 total holidays23 national5 regional
2027 Holiday Calendar — Rhode Island
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2027-01-01 | New Year's Day | Friday | National |
| 2027-01-06 | Epiphany | Wednesday | National |
| 2027-01-18 | Martin Luther King Jr. Day | Monday | National |
| 2027-02-10 | Ash Wednesday | Wednesday | National |
| 2027-02-15 | Presidents' Day | Monday | National |
| 2027-03-28 | Easter Sunday | Sunday | National |
| 2027-03-29 | Easter Monday | Monday | National |
| 2027-05-04 | Rhode Island Independence Day | Tuesday | Rhode Island |
| 2027-05-06 | Ascension Day | Thursday | National |
| 2027-05-23 | Trinity Sunday | Sunday | National |
| 2027-05-27 | Corpus Christi | Thursday | National |
| 2027-05-31 | Memorial Day | Monday | National |
| 2027-06-15 | Ashura | Tuesday | National |
| 2027-06-21 | Juneteenth National Freedom Day | Monday | Rhode Island |
| 2027-08-09 | Victory Day | Monday | Rhode Island |
| 2027-08-15 | Assumption of Mary | Sunday | National |
| 2027-09-06 | Labor Day | Monday | National |
| 2027-10-04 | Feast of St Francis of Assisi | Monday | National |
| 2027-10-11 | Casimir Pulaski Day | Monday | Rhode Island |
| 2027-11-01 | All Saints' Day | Monday | National |
| 2027-11-02 | All Souls' Day | Tuesday | National |
| 2027-11-11 | Veterans Day | Thursday | National |
| 2027-11-25 | Thanksgiving Day | Thursday | National |
| 2027-12-08 | Feast of the Immaculate Conception | Wednesday | National |
| 2027-12-12 | Feast of Our Lady of Guadalupe | Sunday | National |
| 2027-12-24 | Christmas Day | Friday | National |
| 2027-12-25 | Christmas Day | Saturday | National |
| 2027-12-27 | Christmas Day | Monday | Rhode Island |
Automate Rhode Island 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=2027" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Rhode Island
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=US&year=2027",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Rhode Island (ISO code: RI)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("RI")
);