# HTTP Security Audit for Healthcare Domains

**Use case:** 

Analyze HTTP security headers for healthcare websites. Get a pass/fail result for multiple headers and a security score for each URL.

## Input

```json
{
  "urls": [
    "https://mayoclinic.org",
    "https://webmd.com",
    "https://healthline.com",
    "https://medscape.com",
    "https://practo.com",
    "https://zocdoc.com",
    "https://teladoc.com",
    "https://epic.com",
    "https://athenahealth.com",
    "https://hims.com"
  ],
  "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.