Papua New Guinea 2025 Holidays
List of public holidays in Papua New Guinea for year 2025
Papua New Guinea - 2025 Holidays
15 of 15 holidays
| Date | Day | Name | Type |
|---|---|---|---|
| Jan 1, 2025 | Wednesday | New Year's Day | Public Holiday |
| Mar 20, 2025 | Thursday | March Equinox | Season |
| Apr 18, 2025 | Friday | Good Friday | Public Holiday |
| Apr 19, 2025 | Saturday | Holy Saturday | Public Holiday |
| Apr 20, 2025 | Sunday | Easter Sunday | Public Holiday |
| Apr 21, 2025 | Monday | Easter Monday | Public Holiday |
| Jun 17, 2025 | Tuesday | King's Birthday | Public Holiday |
| Jun 21, 2025 | Saturday | June Solstice | Season |
| Jul 23, 2025 | Wednesday | National Remembrance Day | Public Holiday |
| Aug 26, 2025 | Tuesday | National Day of Repentance | Public Holiday |
| Sep 16, 2025 | Tuesday | Day off for Independence Day | Public Holiday |
| Sep 23, 2025 | Tuesday | September Equinox | Season |
| Dec 22, 2025 | Monday | 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 Papua New Guinea. 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 Papua New Guinea this year in 2025?
There are 11 public holidays in Papua New Guinea in 2025. If you are planning ahead? Check upcoming holidays
How to retrieve the Papua New Guinea holidays list via API?
Simply make a GET request to v1/holidays?country=PG&year=2025 API to retrieve this list of Papua New Guinea 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: 'PG',
year: '2025'
});
console.log(holidays);API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=PG&year=2025" \
-H "Authorization: Bearer YOUR_API_KEY"