# US Public Holidays 2026 API Scraper

**Use case:** 

Fetch US public holidays for 2026 with dates, local names, country codes, and holiday types using the Nager.Date API.

## Input

```json
{
  "mode": "holidays",
  "countryCodes": [
    "US"
  ],
  "years": [
    2026
  ]
}
```

## Output

```json
{
  "date": {
    "label": "Date",
    "format": "text"
  },
  "name": {
    "label": "Holiday Name",
    "format": "text"
  },
  "localName": {
    "label": "Local Name",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "global": {
    "label": "National",
    "format": "boolean"
  },
  "types": {
    "label": "Types",
    "format": "text"
  },
  "counties": {
    "label": "Counties/States",
    "format": "text"
  },
  "fixed": {
    "label": "Fixed Date",
    "format": "boolean"
  },
  "launchYear": {
    "label": "Launch Year",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Public Holidays API](https://apify.com/automation-lab/public-holidays-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/public-holidays-scraper) to learn more, explore other use cases, and run it yourself.