# CSP and HSTS Header Checker for eLearning Sites

**Use case:** 

Analyze security headers for popular eLearning platforms. Get detailed results and security scores for each site's CSP and HSTS configurations.

## Input

```json
{
  "urls": [
    "https://coursera.org",
    "https://udemy.com",
    "https://edx.org",
    "https://khanacademy.org",
    "https://skillshare.com",
    "https://pluralsight.com",
    "https://linkedin.com/learning"
  ],
  "maxResults": 1000,
  "sortBy": "grade",
  "maxConcurrency": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "securityScore": {
    "label": "Security Score",
    "format": "number"
  },
  "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.