Complete guides, references, and tutorials to help you get the most out of SSLytics
Welcome to SSLytics! This guide will help you get started with our SSL certificate monitoring and analytics platform.
Before diving into SSLytics, it's helpful to understand some key concepts related to SSL certificates and security.
SSL (Secure Sockets Layer) certificates, now commonly referred to as TLS (Transport Layer Security) certificates, are digital certificates that authenticate the identity of a website and enable an encrypted connection. These certificates are essential for securing online communications and transactions.
There are three main types of SSL certificate validation:
SSL grading is a way to evaluate the security of a website's SSL/TLS implementation. SSLytics uses a grading system similar to SSL Labs, ranging from A+ (excellent) to F (failing).
# Check SSL certificate for a domain
curl -X POST https://api.sslytics.com/v1/check \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"domain": "example.com"}'
# Bulk check multiple domains
curl -X POST https://api.sslytics.com/v1/bulk-check \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domains": [
"example.com",
"subdomain.example.com",
"another-domain.com"
]
}'
# Set up monitoring for a domain
curl -X POST https://api.sslytics.com/v1/monitors \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "example.com",
"checkInterval": "daily",
"alerts": {
"expiration": 30,
"vulnerabilities": true
}
}'
The free plan includes basic SSL certificate checks for up to 5 domains per month, certificate analysis, and SSL grade scoring.
Free users can manually check certificates anytime. Premium users can set up automated monitoring with intervals as short as 15 minutes.
Our grading system evaluates multiple factors including certificate validity, protocol support, cipher strength, and vulnerability presence. The overall grade ranges from A+ (excellent) to F (failing).
Yes, you can monitor individual subdomains as separate entries. Premium plans include wildcard domain monitoring.