GET /ssl/:domain
Vérifiez le statut du certificat SSL/TLS pour tout domain. Renvoie certificate validity, issuer, expiration date, days until expiry, certificate chain details, et protocol support. Utile pour la surveillance des website security, building uptime tableaux de bord qui track certificate health, alerting systems qui warn before certificates expire, et security audit tools. Checks are performed en temps réel against le live server.
domain
requis
Domain
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
domain |
Oui | - | Domain |
curl https://nordapi.ee/api/v1/ssl/nordapi.ee
curl https://nordapi.ee/api/v1/ssl/nordapi.ee
curl https://nordapi.ee/api/v1/ssl/google.com
curl https://nordapi.ee/api/v1/ssl/github.com
{
"data": {
"days_until_expiry": 73,
"domain": "nordapi.ee",
"expired": false,
"issuer": "C=~c\"US\", O=Let's Encrypt, CN=E7",
"not_after": "2026-06-17",
"not_before": "2026-03-19",
"protocol": "tlsv1.3",
"subject": "CN=nordapi.ee",
"valid": true
},
"success": true
}