← Þróunarverkfæri

SSL vottorðsathugun

GET /ssl/:domain

Athugaðu the SSL/TLS certificate status for hvaða ... sem er domain. Skilar certificate validity, issuer, expiration date, days until expiry, certificate chain details, and protocol support. Gagnlegt til að vakta website security, building uptime mælaborð that track certificate health, alerting kerfi that warn before certificates expire, and security audit verkfæri. Checks are performed í rauntíma á móti the live server.

Breytur

domain nauðsynlegt

Domain

Dæmi um fyrirspurnir

Grunnnotkun
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

Lifandi svar

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