Inspect the SSL/TLS certificate of any domain. Returns issuer, subject, expiry date, days_until_expiry, chain validity, signature algorithm, key size, SAN list, supported TLS versions, accepted cipher suites, and a 0-100 security score. Built for bulk: pass 10,000 domains and it returns one row per cert. Ideal for compliance audits, expiry monitoring, security posture dashboards, and vendor risk reviews.
# Start a run via the Apify API curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~ssl-certificate-inspector/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "domains": [ "google.com", "stripe.com", "shopify.com", "example-app.com", "vendor-portal.com" ], "checkChain": true, "checkCiphers": true }' # Or use with AI agents via MCP: # https://mcp.apify.com?tools=santamaria-automations/ssl-certificate-inspector
| Field | Type | Example |
|---|---|---|
| domain | string | stripe.com |
| issuer | string | DigiCert TLS RSA SHA256 2020 CA1 |
| common_name | string | stripe.com |
| sans | array | ["stripe.com","www.stripe.com"] |
| not_after | string | 2026-09-12T23:59:59Z |
| days_until_expiry | integer | 91 |
| chain_valid | boolean | true |
| signature_algorithm | string | sha256WithRSAEncryption |
| supports_tls13 | boolean | true |
| security_score | integer | 98 |