# SPF and DKIM Checker for E-Commerce Domains

**Use case:** 

Check SPF and DKIM records for leading e-commerce domains. Receive a deliverability score and detailed report on email authentication.

## Input

```json
{
  "domains": [
    "amazon.com",
    "ebay.com",
    "etsy.com",
    "walmart.com",
    "target.com",
    "bestbuy.com",
    "newegg.com",
    "rakuten.com",
    "wish.com",
    "aliexpress.com"
  ],
  "maxResults": 1000,
  "sortBy": "input",
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "deliverabilityScore": {
    "label": "Deliverability Score",
    "format": "integer"
  },
  "grade": {
    "label": "Grade",
    "format": "string"
  },
  "hasMx": {
    "label": "Has MX",
    "format": "boolean"
  },
  "hasSpf": {
    "label": "Has SPF",
    "format": "boolean"
  },
  "hasDmarc": {
    "label": "Has DMARC",
    "format": "boolean"
  },
  "dmarcPolicy": {
    "label": "DMARC Policy",
    "format": "string"
  },
  "hasDkim": {
    "label": "Has DKIM",
    "format": "boolean"
  },
  "hasBimi": {
    "label": "Has BIMI",
    "format": "boolean"
  },
  "checkedAt": {
    "label": "Checked At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Email Deliverability Checker — MX, SPF, DKIM, DMARC & BIMI](https://apify.com/logiover/bulk-email-deliverability-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/bulk-email-deliverability-checker) to learn more, explore other use cases, and run it yourself.