get_ssl_cert_info
Retrieve SSL certificate details for a domain, including issuer, validity period, and expiration dates, to ensure website security and monitor certificate status.
Instructions
Get SSL certificate information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | The domain to check SSL certificate for (e.g., www.sslmon.dev) | |
port | No | Port number to check (default: 443) |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "The domain to check SSL certificate for (e.g., www.sslmon.dev)",
"type": "string"
},
"port": {
"default": 443,
"description": "Port number to check (default: 443)",
"type": "number"
}
},
"required": [
"domain"
],
"type": "object"
}