Tools

SSL Checker

Retrieve SSL certificate information for a domain.

GET /v1/tools/ssl

https://api.cludz.net/v1/tools/ssl

Get details about a domain's SSL certificate, including validity and expiration.

Query Parameters:

ParameterRequiredDescriptionType
domainYesThe domain name to check.string

Example

curl "https://api.cludz.net/v1/tools/ssl?domain=google.com" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "statusCode": 200,
  "statusMessage": "OK",
  "message": "SSL Info retrieved",
  "data": {
    "valid": true,
    "authorized": true,
    "subject": {
      "CN": "*.google.com",
      "O": "Google LLC",
      "L": "Mountain View",
      "ST": "California",
      "C": "US"
    },
    "issuer": {
      "CN": "GTS CA 1C3",
      "O": "Google Trust Services LLC",
      "C": "US"
    },
    "validFrom": "Oct 23 08:22:20 2023 GMT",
    "validTo": "Jan 15 08:22:19 2024 GMT",
    "daysRemaining": 83
  }
}
Built with 💖 by Miza • © 2026 - Powered by Nuxt