Flagship: Internet Diagnose
One call. Full posture report. DNS + DNSSEC (via DoH) + TLS + HTTPS + headers + IPv6 + email (SPF/DMARC/MX/DKIM) + BGP + RPKI. Aggregated into an A–F grade with findings.
| Method | Path | Summary |
|---|---|---|
| GET | /api/internet/diagnose | Full internet posture for a domain (?domain=) |
Example
curl -sS "https://api.connormerk.dev/api/internet/diagnose?domain=cloudflare.com"Output shape
{
"domain": "cloudflare.com",
"grade": "A",
"summary": "All critical checks passing.",
"findings": [{ "id": "dnssec", "level": "pass", "message": "DNSSEC validated (AD flag set)" }, ...],
"checks": { "dns": {...}, "tls": {...}, "https": {...}, "headers": {...}, "ipv6": {...}, "email": {...}, "bgp": {...}, "rpki": {...} }
}See the full reference or fetch the live OpenAPI 3.1 spec.