← Entwicklerwerkzeuge

SSL-Zertifikatsprüfung

GET /ssl/:domain

Prüfen Sie den SSL/TLS certificate status for any domain. Liefert certificate validity, issuer, expiration date, days until expiry, certificate chain details, und protocol support. Nützlich für monitoring website security, building uptime dashboards that track certificate health, alerting systems that warn before certificates expire, und security audit tools. Checks are performed in Echtzeit against the live server.

Parameter

domain erforderlich

Domain

Beispielanfragen

Grundlegende Verwendung
curl https://nordapi.ee/api/v1/ssl/nordapi.ee
Check NordAPI SSL certificate
curl https://nordapi.ee/api/v1/ssl/nordapi.ee
Check Google SSL certificate
curl https://nordapi.ee/api/v1/ssl/google.com
Check GitHub SSL certificate
curl https://nordapi.ee/api/v1/ssl/github.com

Live-Antwort

{
  "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
}