Mozambique 2026 Holidays
List of public holidays in Mozambique for year 2026
Mozambique - 2026 Holidays
14 of 14 holidays
| Date | Day | Name | Type |
|---|---|---|---|
| Jan 1, 2026 | Thursday | New Year | Public Holiday |
| Feb 3, 2026 | Tuesday | Mozambican Heroes Day | Public Holiday |
| Mar 20, 2026 | Friday | March Equinox | Season |
| Apr 3, 2026 | Friday | Good Friday | Observance |
| Apr 7, 2026 | Tuesday | Mozambican Woman's Day | Public Holiday |
| May 1, 2026 | Friday | May Day | Public Holiday |
| Jun 21, 2026 | Sunday | June Solstice | Season |
| Jun 25, 2026 | Thursday | Independence Day | Public Holiday |
| Sep 7, 2026 | Monday | Victory Day | Public Holiday |
| Sep 23, 2026 | Wednesday | September Equinox | Season |
| Sep 25, 2026 | Friday | Armed Forces Day | Public Holiday |
| Oct 4, 2026 | Sunday | Peace and Reconciliation Day | Public Holiday |
| Dec 21, 2026 | Monday | December Solstice | Season |
| Dec 25, 2026 | Friday | Family Day | Public Holiday |
We strive to provide an accurate and up-to-date holiday list for Mozambique. 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 Mozambique this year in 2026?
There are 9 public holidays in Mozambique in 2026. If you are planning ahead? Check upcoming holidays
How to retrieve the Mozambique holidays list via API?
Simply make a GET request to v1/holidays?country=MZ&year=2026 API to retrieve this list of Mozambique 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: 'MZ',
year: '2026'
});
console.log(holidays);API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=MZ&year=2026" \
-H "Authorization: Bearer YOUR_API_KEY"