# CSP Audit for Major Social Media Platforms

**Use case:** 

Evaluate CSP headers for top social media sites. Gain insights on security compliance with detailed pass/fail results and a numeric score.

## Input

```json
{
  "urls": [
    "https://facebook.com",
    "https://twitter.com",
    "https://instagram.com",
    "https://linkedin.com",
    "https://tiktok.com",
    "https://snapchat.com",
    "https://pinterest.com",
    "https://reddit.com",
    "https://tumblr.com",
    "https://discord.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.