📋

HTTP Header Viewer

Inspect the HTTP response headers returned by any public URL. Check status codes, cache control, security headers, content type and more.

🌐 Network & Web Tools Free Browser-based
Tool
Browser CORS limitation: Only headers explicitly shared by the server via CORS are visible. Use the httpbin.org shortcut to test headers unrestricted. For full header inspection of any URL, use a command-line tool like curl -I https://example.com.
Quick test:

Important HTTP Response Headers

HeaderPurpose
Content-TypeMIME type of the response body
Cache-ControlCaching instructions for browsers and CDNs
Content-Security-PolicyControls which resources the browser can load
Strict-Transport-SecurityForces HTTPS — prevents downgrade attacks
X-Frame-OptionsPrevents clickjacking via iframes
X-Content-Type-OptionsPrevents MIME-type sniffing
Referrer-PolicyControls referrer information sent with requests
Permissions-PolicyControls browser features (camera, mic, geolocation)

Why CORS Limits Visible Headers

Browsers enforce the Same-Origin Policy — JavaScript can only read response headers that the server explicitly exposes via Access-Control-Expose-Headers. This tool shows whatever the server shares. Use curl -I or a server-side proxy for unrestricted header inspection.

Frequently Asked Questions