Zambia 2025 Holidays
List of public holidays in Zambia for year 2025
Zambia - 2025 Holidays
22 of 22 holidays
| Date | Day | Name | Type |
|---|---|---|---|
| Jan 1, 2025 | Wednesday | New Year | Public Holiday |
| Mar 8, 2025 | Saturday | International Women's Day | Public Holiday |
| Mar 12, 2025 | Wednesday | Youth 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 | Observance |
| Apr 21, 2025 | Monday | Easter Monday | Public Holiday |
| Apr 28, 2025 | Monday | Kenneth Kaunda Day | Public Holiday |
| May 1, 2025 | Thursday | Labour Day | Public Holiday |
| May 11, 2025 | Sunday | Mother's Day | Observance |
| May 25, 2025 | Sunday | Africa Freedom Day | Public Holiday |
| Jun 15, 2025 | Sunday | Father's Day | Observance |
| Jun 21, 2025 | Saturday | June Solstice | Season |
| Jul 7, 2025 | Monday | Heroes' Day | Public Holiday |
| Jul 8, 2025 | Tuesday | Unity Day | Public Holiday |
| Aug 4, 2025 | Monday | Farmers' Day | Public Holiday |
| Sep 22, 2025 | Monday | September Equinox | Season |
| Oct 18, 2025 | Saturday | Prayer Day | Public Holiday |
| Oct 24, 2025 | Friday | Independence Day | Public Holiday |
| Dec 21, 2025 | Sunday | December Solstice | Season |
| Dec 25, 2025 | Thursday | Christmas Day | Public Holiday |
We strive to provide an accurate and up-to-date holiday list for Zambia. 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 Zambia this year in 2025?
There are 15 public holidays in Zambia in 2025. If you are planning ahead? Check upcoming holidays
How to retrieve the Zambia holidays list via API?
Simply make a GET request to v1/holidays?country=ZM&year=2025 API to retrieve this list of Zambia 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: 'ZM',
year: '2025'
});
console.log(holidays);API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=ZM&year=2025" \
-H "Authorization: Bearer YOUR_API_KEY"