Suriname 2025 Holidays
List of public holidays in Suriname for year 2025
Suriname - 2025 Holidays
21 of 21 holidays
| Date | Day | Name | Type |
|---|---|---|---|
| Jan 1, 2025 | Wednesday | New Year | Public Holiday |
| Jan 29, 2025 | Wednesday | Lunar New Year | Public Holiday |
| Mar 1, 2025 | Saturday | Ramadan Start (Tentative Date) | Observance |
| Mar 14, 2025 | Friday | Holi Phagwa | Public Holiday |
| Mar 20, 2025 | Thursday | March Equinox | Season |
| Mar 31, 2025 | Monday | Eid al-Fitr (Tentative Date) | Public Holiday |
| Apr 18, 2025 | Friday | Good Friday | Public Holiday |
| Apr 20, 2025 | Sunday | Easter Sunday | Observance, Christian |
| Apr 21, 2025 | Monday | Easter Monday | Public Holiday |
| May 1, 2025 | Thursday | Labor Day | Public Holiday |
| Jun 7, 2025 | Saturday | Eid al-Adha (Tentative Date) | Public Holiday |
| Jun 20, 2025 | Friday | June Solstice | Season |
| Jul 1, 2025 | Tuesday | Freedom Day | Public Holiday |
| Aug 9, 2025 | Saturday | Indigenous Peoples Day | Public Holiday |
| Sep 22, 2025 | Monday | September Equinox | Season |
| Oct 10, 2025 | Friday | Day of the Maroons | Public Holiday |
| Oct 20, 2025 | Monday | Diwali | Public Holiday |
| Nov 25, 2025 | Tuesday | Independence Day | Public Holiday |
| Dec 21, 2025 | Sunday | December Solstice | Season |
| Dec 25, 2025 | Thursday | Christmas Day | Public Holiday |
| Dec 26, 2025 | Friday | Boxing Day | Public Holiday |
We strive to provide an accurate and up-to-date holiday list for Suriname. However, please note that some holiday dates may change. If you discover any discrepancies, kindly report to us.
Holiday Type Color Legend
Holidays are color-coded based on their types:
- Public HolidayPublic, National, Federal, and Gazetted holidays
- Local HolidayLocal, Regional, State, and Provincial holidays
- Other HolidayObservances and other types of holidays
Frequently Asked Questions
How many holidays in Suriname this year in 2025?
There are 15 public holidays in Suriname in 2025. If you are planning ahead? Check upcoming holidays
How to retrieve the Suriname holidays list via API?
Simply make a GET request to v1/holidays?country=SR&year=2025 API to retrieve this list of Suriname holidays.
Here is an example using Node.js and our official package on NPM:
// Install the 11holidays package from NPM
// npm i 11holidays
import HolidaysApi from '11holidays';
const instance = new HolidaysApi(API_KEY);
const holidays = await instance.holidays.list({
country: 'SR',
year: '2025'
});
console.log(holidays);API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=SR&year=2025" \
-H "Authorization: Bearer YOUR_API_KEY"