WEB
HTTP Header Checker
Check HTTP headers
Input
Terminal
Console ready. Execute a command to see output...
About HTTP Header Checker
The Hidden Conversation
Before a browser renders a page, the server sends a set of "Headers" defining the rules of engagement.
Important Headers to Watch
- Status Code: 200 (OK), 301 (Redirect), 404 (Not Found), 500 (Error).
- Cache-Control: Tells the browser how long to keep the file.
- Content-Security-Policy (CSP): The modern firewall against XSS attacks.
- Strict-Transport-Security (HSTS): Forces HTTPS connections.
How to use HTTP Header Checker
- Enter a URLFull URL (
https://example.com/path) or just the host (we default tohttps://if you skip the scheme). - Hit Check HeadersA HEAD request goes out from our server with SSRF protection on every hop.
- Read the responseStatus code, statusText, the final URL after redirects, and every response header (one per line).
- Follow upUse SSL Checker on the same host for TLS details, or DNS Lookup for the underlying DNS record.
Frequently Asked Questions
- A HEAD request to the URL you give it and the response headers the server sends back. You get the final status code, the resolved URL after redirects, and every header the server returns: Content-Type, caching policy (Cache-Control, Expires), security headers (Strict-Transport-Security, Content-Security-Policy, X-Frame-Options), Server identification, and so on.