检查任何域名的 SSL/TLS 证书。返回颁发者、主题、到期日期、days_until_expiry、链有效性、签名算法、密钥大小、SAN 列表、支持的 TLS 版本、接受的密码套件和 0-100 安全评分。为批量而生:输入 10,000 域名,每证书一行返回。适用于合规审计、到期监控、安全态势仪表盘和供应商风险审查。
# 通过 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 }' # 或通过 MCP 与 AI 代理配合使用: # https://mcp.apify.com?tools=santamaria-automations/ssl-certificate-inspector
| 字段 | 类型 | 示例 |
|---|---|---|
| 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 |