# Audit Security Headers for Government Websites

**Use case:** 

Evaluate the HTTP security headers for major government sites. Get detailed results including security scores and pass/fail statuses for each header.

## Input

```json
{
  "urls": [
    "https://whitehouse.gov",
    "https://gov.uk",
    "https://canada.ca",
    "https://australia.gov.au",
    "https://data.gov",
    "https://europa.eu",
    "https://ecb.europa.eu",
    "https://bundesregierung.de",
    "https://elysee.fr",
    "https://governo.it"
  ],
  "maxResults": 1000,
  "sortBy": "input",
  "maxConcurrency": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "securityScore": {
    "label": "Security Score",
    "format": "integer"
  },
  "grade": {
    "label": "Grade",
    "format": "string"
  },
  "cspPass": {
    "label": "CSP Pass",
    "format": "boolean"
  },
  "hstsPass": {
    "label": "HSTS Pass",
    "format": "boolean"
  },
  "xFrameOptionsPass": {
    "label": "X-Frame-Options Pass",
    "format": "boolean"
  },
  "missingHeaders": {
    "label": "Missing Headers",
    "format": "string"
  },
  "checkedAt": {
    "label": "Checked At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk HTTP Security Headers Analyzer - CSP, HSTS](https://apify.com/logiover/bulk-http-security-headers) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/bulk-http-security-headers) to learn more, explore other use cases, and run it yourself.