Fetch a URL live and inspect status, redirect chain, every response header, detected tech and timing.
This tool makes a real HTTP request to a URL and shows you exactly what came back: the status code, the final URL after any redirects, every response header, the technologies those headers reveal, and how long the request took. It is the browser DevTools "Network" tab as a shareable, server-side check.
What it shows
Server, X-Powered-By, X-Generator, CDN markers like CF-Ray or X-Vercel-ID). Header-based only, so it never guesses beyond what the server actually advertises.Why "live" and server-side matters
Fetching from the server, rather than pasting headers, means you see what a fresh, uncached client receives — including anything a CDN or reverse proxy adds or strips in front of your origin. That is frequently where the surprise lives: a header you set that never reaches the client, or a redirect you did not know was there.
Worked example
Request http://example.com and you may see a 301 to https://example.com, then a 200. The final URL confirms the HTTPS upgrade works; the Strict-Transport-Security header (or its absence) on the final response tells you whether the upgrade is enforced for next time.
The security angle
Headers are a reconnaissance goldmine and a hardening checklist at once. A verbose Server: Apache/2.4.29 (Ubuntu) or X-Powered-By: PHP/7.2 hands an attacker your exact stack and version — information disclosure worth removing. The redirect chain reveals whether HTTP is properly upgraded to HTTPS. And the presence or absence of security headers on the final response is what actually protects users.
Common mistakes
Server/X-Powered-By — quiet but real information disclosure.Parse a CVSS 3.1 or 4.0 vector, expand every metric in plain English, and compute the 3.1 base score.
Paste raw email headers to reconstruct the delivery hop path and read SPF, DKIM, and DMARC results.
Paste HTTP response headers and get a graded report on HSTS, CSP, X-Frame-Options, and more.
Decode a JWT and statically review its header and claims.
Break a User-Agent string into browser, version, operating system, and device — and spot bots.
Master web application security testing with this comprehensive guide. Learn testing methodologies, OWASP best practices, essential tools (Burp Suite, ZAP, Nmap), vulnerability assessment tec
35 min read
Master web application security with our comprehensive guide to the OWASP Top 10 2025. Learn about the most critical security risks, real-world examples, prevention techniques, and testing me
35 min read