Qatar 2026 Holidays
List of public holidays in Qatar for year 2026
Qatar - 2026 Holidays
16 of 16 holidays
| Date | Day | Name | Type |
|---|---|---|---|
| Jan 1, 2026 | Thursday | New Year's Day | Bank holiday |
| Feb 10, 2026 | Tuesday | National Sports Day | Public holiday |
| Feb 18, 2026 | Wednesday | Ramadan Start | Observance |
| Mar 1, 2026 | Sunday | March Bank Holiday | Bank holiday |
| Mar 20, 2026 | Friday | Eid al-Fitr | Public holiday |
| Mar 20, 2026 | Friday | March Equinox | Season |
| Mar 22, 2026 | Sunday | Eid al-Fitr Holiday | Public holiday |
| Mar 22, 2026 | Sunday | Eid al-Fitr Holiday | Public holiday |
| May 27, 2026 | Wednesday | Eid al-Adha (Feast of Sacrifice) | Public holiday |
| May 29, 2026 | Friday | Eid al-Adha Holiday | Public holiday |
| May 29, 2026 | Friday | Eid al-Adha Holiday | Public holiday |
| Jun 21, 2026 | Sunday | June Solstice | Season |
| Sep 23, 2026 | Wednesday | September Equinox | Season |
| Dec 18, 2026 | Friday | National Day | Public holiday |
| Dec 21, 2026 | Monday | December Solstice | Season |
| Dec 31, 2026 | Thursday | New Year's Eve | Observance |
We strive to provide an accurate and up-to-date holiday list for Qatar. 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 Qatar this year in 2026?
There are 8 public holidays in Qatar in 2026. If you are planning ahead? Check upcoming holidays
How to retrieve the Qatar holidays list via API?
Simply make a GET request to v1/holidays?country=QA&year=2026 API to retrieve this list of Qatar 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: 'QA',
year: '2026'
});
console.log(holidays);API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=QA&year=2026" \
-H "Authorization: Bearer YOUR_API_KEY"