Skip to content

SSL Certificates

Feature

Real-time Analysis: Get instant details of any SSL certificate.

Usecase

Security Monitoring: Continuously monitor certificates for changes and expirations.

SSL Certificate Analysis is the process of examining the SSL/TLS certificate of a website to ensure it is valid, up-to-date, and properly configured. This is essential for maintaining the security and trustworthiness of your online assets.

Our SSL Certificate API allows you to programmatically:

  • Verify Certificate Validity: Check if a certificate is current and has not expired.
  • Inspect Certificate Details: Get detailed information about the certificate issuer, subject, and validity period.
  • Analyze the Certificate Chain: Understand the chain of trust from the server certificate to the root certificate authority.
  • Monitor for Changes: Keep track of any changes to your SSL certificates to prevent unexpected issues.

The SSL Certificate API endpoint is:

GET https://zoros.io/api/v1/ssl/certificate
ParameterTypeDescription
domainstringThe domain you want to analyze.
api_keystringYour unique API key for authentication.
Terminal window
curl "https://zoros.io/api/v1/ssl/certificate?domain=example.com&api_key=YOUR_API_KEY"

The API returns a JSON object with the SSL certificate details.

{
"domain": "example.com",
"issuer": "Let's Encrypt",
"valid_from": "2023-06-01T00:00:00Z",
"valid_to": "2024-05-31T23:59:59Z",
"algorithm": "SHA-256",
"subject_alternative_names": [
"www.example.com",
"mail.example.com"
]
}
FieldTypeDescription
domainstringThe domain name the certificate is associated with.
issuerstringThe Certificate Authority (CA) that issued the certificate.
valid_fromstring (ISO 8601)The date and time the certificate becomes valid.
valid_tostring (ISO 8601)The date and time the certificate expires.
algorithmstringThe signature algorithm used for the certificate.
subject_alternative_namesarray of stringsA list of other domain names covered by the certificate.

Security Monitoring

Continuously monitor your domains for certificate changes and expirations.

Compliance Auditing

Ensure all web properties comply with your organization’s security policies.

Asset Management

Keep track of all SSL certificates across your digital infrastructure.

Threat Intelligence

Analyze certificate issuance to identify potential phishing or impersonation attempts.