# Domain Health Audit for Stripe and Anthropic

**Use case:** 

Get a comprehensive audit of stripe.com and anthropic.com. Receive a health score and a list of issues including DNS, SSL, and email protection.

## Input

```json
{
  "domains": [
    "stripe.com",
    "anthropic.com"
  ],
  "maxConcurrency": 2
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "date"
  },
  "healthScore": {
    "label": "Health score",
    "format": "number"
  },
  "resolves": {
    "label": "Resolves",
    "format": "boolean"
  },
  "records.a": {
    "label": "A records",
    "format": "array"
  },
  "records.aaaa": {
    "label": "AAAA records",
    "format": "array"
  },
  "records.mx": {
    "label": "MX records",
    "format": "array"
  },
  "records.ns": {
    "label": "NS records",
    "format": "array"
  },
  "records.wwwCname": {
    "label": "www CNAME",
    "format": "array"
  },
  "email.canReceive": {
    "label": "Can receive email",
    "format": "boolean"
  },
  "email.spf": {
    "label": "SPF",
    "format": "text"
  },
  "email.dmarc": {
    "label": "DMARC",
    "format": "text"
  },
  "email.dmarcPolicy": {
    "label": "DMARC policy",
    "format": "text"
  },
  "ssl.issuer": {
    "label": "SSL issuer",
    "format": "text"
  },
  "ssl.validTo": {
    "label": "SSL valid to",
    "format": "date"
  },
  "ssl.daysLeft": {
    "label": "SSL days left",
    "format": "number"
  },
  "ssl.authorized": {
    "label": "SSL authorized",
    "format": "boolean"
  },
  "issues": {
    "label": "Issues",
    "format": "array"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Domain Health Checker](https://apify.com/zinin/domain-health-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/domain-health-checker) to learn more, explore other use cases, and run it yourself.