# SSL Certificate Checker for E-Commerce Sites

**Use case:** 

Monitor SSL/TLS certificates for major e-commerce platforms. Get expiry dates, issuer information, and TLS version support for key domains.

## Input

```json
{
  "domains": [
    "amazon.com",
    "ebay.com",
    "etsy.com",
    "walmart.com",
    "target.com",
    "bestbuy.com",
    "newegg.com",
    "aliexpress.com",
    "wish.com",
    "rakuten.com"
  ],
  "maxConcurrency": 10
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "hasTls": {
    "label": "Has TLS",
    "format": "boolean"
  },
  "valid": {
    "label": "Valid",
    "format": "boolean"
  },
  "daysToExpiry": {
    "label": "Days To Expiry",
    "format": "integer"
  },
  "validTo": {
    "label": "Valid To",
    "format": "string"
  },
  "issuer": {
    "label": "Issuer",
    "format": "string"
  },
  "tlsProtocol": {
    "label": "TLS Protocol",
    "format": "string"
  },
  "sanCount": {
    "label": "SAN Count",
    "format": "integer"
  },
  "errorType": {
    "label": "Error Type",
    "format": "string"
  },
  "latencyMs": {
    "label": "Latency (ms)",
    "format": "integer"
  },
  "checkedAt": {
    "label": "Checked At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk SSL Certificate Checker — Expiry, Issuer & TLS](https://apify.com/logiover/bulk-ssl-certificate-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/bulk-ssl-certificate-checker) to learn more, explore other use cases, and run it yourself.