← Back to all APIs
📅

Indian Holidays API

List national and gazetted holidays for any year.

Endpoint

GET /api/v1/holidays/{year}

Parameters

Name In Required Description
year path Yes 4-digit year, e.g. 2026

Example request

curl https://apibharat.com/api/v1/holidays/2026

Example response

{
  "success": true,
  "data": {
    "year": 2026,
    "count": 9,
    "holidays": [
      { "holiday_date": "2026-01-26", "name": "Republic Day", "type": "National", "day_of_week": "Monday" },
      { "holiday_date": "2026-08-15", "name": "Independence Day", "type": "National", "day_of_week": "Saturday" }
    ]
  },
  "message": "Holidays found for 2026"
}

Try it live

Open the example in your browser:

/api/v1/holidays/2026 ↗