SSL Checker API
Dokumentasi resmi SSL Checker API dari Maelyn API untuk validitas sertifikat TLS (issuer, expiry, fingerprint)
Base Information
- BASE_URL_API:
https://api.maelyn.eu/api - Path / Endpoint:
/tools/ssl - Method:
GET - Credit Usage:
1
Authentication
Gunakan header berikut pada setiap request:
x-maelyn-auth: YOUR_API_KEY
Query Parameters
Endpoint ini memeriksa sertifikat TLS langsung via socket (100% lokal, tanpa API pihak ketiga): issuer, masa berlaku, sisa hari, fingerprint SHA-256, protokol, dan cipher.
Example Request
GET /tools/ssl?domain=google.com
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | Yes | Hostname (tanpa https://). |
Example Usage
GET /tools/ssl?domain=google.com
Success Response
{
"success": true,
"data": {
"domain": "google.com",
"valid": true,
"subject": "*.google.com",
"issuer": "Google Trust Services",
"valid_from": "Aug 4 00:00:00 2026 GMT",
"valid_to": "Oct 27 00:00:00 2026 GMT",
"days_left": 68,
"fingerprint256": "AA:BB:CC:...",
"protocol": "TLSv1.3",
"cipher": "TLS_AES_128_GCM_SHA256"
}
}