← Utvecklarverktyg

SSL-certifikatkontroll

GET /ssl/:domain

Check the SSL/TLS certificate status för valfri domain. Returnerar certificate validity, issuer, expiration datum, dagar until expiry, certificate chain detaljer, and protocol support. Användbart för övervakning website security, att bygga uptime instrumentpaneler som spåra certificate health, alerting system som warn before certificates expire, and security audit verktyg. Kontroller utförs i realtid mot den aktiva servern.

Parametrar

domain obligatorisk

Domain

Exempelförfrågningar

Grundläggande användning
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

Livesvar

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