
SSL API · FreeSSL Certificate Checker
SSL Certificate Checker
API
Returns TLS certificate details for any public hostname: subject, issuer, validity, alt names, cipher, full chain.
Free. No API key. CORS-enabled. Rate-limited per IP.
GET
https://api.domainee.dev/v1/tools/ssl-check?host=domainee.devReturns TLS certificate details for any public hostname: subject, issuer, validity, alt names, cipher, full chain.
Free. No API key required. CORS-enabled. Rate-limited per IP at 30/min and 500/day.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
hostrequired | query | string | Hostname to check. Optionally with `:port` (default 443). example: domainee.dev |
Example request
curl
curl -s "https://api.domainee.dev/v1/tools/ssl-check?host=domainee.dev" | jqExample response
response.json
{
"ok": true,
"data": {
"host": "domainee.dev",
"port": 443,
"protocol": "TLSv1.3",
"cipher": {
"name": "TLS_AES_256_GCM_SHA384",
"version": "TLSv1.3"
},
"authorized": true,
"expired": false,
"daysUntilExpiry": 71,
"subject": {
"CN": "domainee.dev"
},
"issuer": {
"C": "US",
"O": "Let's Encrypt",
"CN": "E7"
},
"validFrom": "2026-03-15T08:32:14.000Z",
"validTo": "2026-06-13T08:32:13.000Z",
"altNames": [
"domainee.dev",
"*.domainee.dev"
]
}
}Other languages
fetch.js
const res = await fetch("https://api.domainee.dev/v1/tools/ssl-check?host=domainee.dev");
const { ok, data } = await res.json();requests.py
import requests
r = requests.get(
"https://api.domainee.dev/v1/tools/ssl-check",
params={"host":"domainee.dev"},
)
data = r.json()["data"]Rate limits & errors
- 30 requests/minute and 500 requests/day per IP. Exceeding either returns HTTP 429 with a
Retry-Afterheader. - All responses are JSON with the envelope
{ "ok": true, "data": {...} }on success or{ "ok": false, "error": { "code", "message" } }on failure. codevalues are stable; safe to switch on programmatically.messageis human-friendly and may change.
Prefer a UI?
Try the ssl certificate checker in your browser →
No code, no curl. Type a domain, get a result.
Full reference
Documentation for /v1/tools/ssl-check →
All parameters, error codes, edge cases.
Need more than free?
Domainee's full platform: Custom Domains API, MCP for AI agents, Buy-a-Domain API, and 50 customer domains free forever. The same engineering team that built these free APIs.