# UK Germany Public Holidays Scraper

**Use case:** 

Compare UK and Germany public holidays by year with names, dates, country codes, and global/local holiday flags.

## Input

```json
{
  "mode": "holidays",
  "countryCodes": [
    "GB",
    "DE"
  ],
  "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.