Website Analyzer
Enter any URL and get its full technical profile — headers, TLS, DNS, SEO, tech stack and what's broken.
Website Analyzer takes a single URL and returns everything a developer normally gathers from five different tabs: the technology stack behind the page, every HTTP and security header, the TLS certificate and when it expires, DNS and email-authentication records, who the domain is registered to, the full on-page SEO picture, and a prioritised list of what is actually wrong. One request, one report, no account.
How Website Analyzer works
The analysis begins with a single ordinary GET request to your URL, following redirects manually so the full chain is visible in the report — that alone catches misconfigured http → https → www hops that quietly cost a redirect on every visit. From the response we read the status, the timing to first byte, whether the body arrived compressed, and every header the server chose to send. Six of those headers form the security grade: HSTS, Content-Security-Policy, X-Content-Type-Options, X-Frame-Options, Referrer-Policy and Permissions-Policy. The grade is weighted rather than a simple count, and it knows that a CSP with frame-ancestors makes X-Frame-Options redundant, so a modern configuration is not penalised for omitting a legacy header.
While the page is being parsed, four independent probes run in parallel. A TLS handshake pulls the live certificate — issuer, the names it covers, the negotiated protocol and cipher, and the exact number of days until it expires. DNS lookups collect A, AAAA, MX, NS, CNAME and TXT records, and pull SPF and DMARC specifically, because a domain that accepts mail without either is trivially spoofable and almost nobody checks. An RDAP query — the modern replacement for WHOIS, served by the registries themselves — returns the registrar, the registration and expiry dates, and the domain's age. Finally robots.txt and the XML sitemap are fetched to establish what crawlers are allowed to see.
The HTML itself is parsed for the things that decide how a page performs in search: title and meta description with their lengths measured against what Google actually displays, canonical URL, robots directives, heading structure, word count, hreflang alternates, JSON-LD structured data types, Open Graph and Twitter card tags, internal versus external links, and images missing alt text or explicit dimensions. Technology detection runs a set of signatures against the markup, headers and cookies to identify frameworks, CMSes, analytics, CDNs and server software.
API discovery works from three sources, and the report labels which one every entry came from, because they are not equally trustworthy. A published OpenAPI or Swagger spec is authoritative: when a site serves one at a conventional framework path, you get the complete endpoint list along with the descriptions its own developers wrote, which is the only place "what is this API for" is documented rather than guessed. A deep scan is the second source — it opens the page in a real browser and records every request, so an endpoint listed there was genuinely called, though its purpose is still inferred from the URL. The third and weakest source is a scan of the site's JavaScript bundles for API-shaped string literals; those prove the code mentions a path, nothing more. Third-party services are named outright from a known-domain list, so a call to Stripe is reported as payments and a call to Sentry as error tracking, with no guesswork involved.
Everything then feeds one synthesis step that produces the findings list. That list is the point of the tool: raw header dumps are easy to generate and hard to act on, so each finding names the problem, says why it matters, and carries a severity so you know what to fix first. Only the target site is contacted — we do not scan ports, enumerate hidden endpoints, fuzz parameters, follow links, or crawl beyond the single page you named.
How to use Website Analyzer
Paste a URL
Type a domain like example.com or a full https:// address. You can drop the scheme — we add https:// and follow any redirect to the canonical address.
Run the analysis
We fetch the page once and run the DNS, certificate, registry and robots.txt probes in parallel. Most sites finish in two to four seconds.
Read the findings
Start with the findings list — it is sorted by severity, not by category. Then use the detail cards below it, or export the whole report as JSON.