# Audit Security Headers for SaaS Platforms

**Use case:** 

Evaluate HTTP security headers for major SaaS platforms. Receive pass/fail results and a security score for each analyzed URL.

## Input

```json
{
  "urls": [
    "https://stripe.com",
    "https://shopify.com",
    "https://hubspot.com",
    "https://salesforce.com",
    "https://zendesk.com",
    "https://intercom.com",
    "https://twilio.com",
    "https://mailchimp.com",
    "https://pipedrive.com",
    "https://freshdesk.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.