HTTP Headers Checker - Status, Security & Cache
See the exact response a server sends: status code, full redirect chain, every header, plus a pass or fail verdict on the six security headers that matter and a read of the caching, compression and server disclosure settings.
The request comes from a ToolForte server.
The rest of ToolForte runs inside your browser, but a browser cannot read another site response headers for you. This request is therefore made server side and sends the user agent ToolForteBot/1.0. Site owners may block that string, and CDNs sometimes answer bots with a challenge page, so the headers you see can differ from the ones your own browser receives. No cookies, no authorization header and none of your own request headers are forwarded, so what you get is the anonymous first response for that address.
What a response header check tells you
Every page a server sends is wrapped in headers that the visitor never sees but the browser obeys. This checker requests an address, follows the redirects by hand and prints the status code, each hop in the chain and every header in the final response. On top of that raw view it grades the six headers that decide how hard the page is to attack, summarises the caching directives, and points out where the server names itself and its version in a way that helps nobody except a scanner.
It is built for the moment something behaves strangely and the markup is not to blame. A developer confirming that a new reverse proxy really adds the headers the config promises, an operations engineer working out why a page is cached far longer than intended, a security reviewer taking a first pass over a domain, or a site owner who received a scan report full of header names and wants to see the current state for themselves. The full table matters as much as the verdicts, because the odd custom header often explains the odd behaviour.
Headers travel with every HTTP response, and browsers act on them before a single pixel is painted. Strict-Transport-Security removes the plain HTTP first request entirely. Content-Security-Policy decides which scripts may run. X-Content-Type-Options stops content sniffing. X-Frame-Options, or the newer frame-ancestors directive inside CSP, decides whether another site can put your page inside a frame. Referrer-Policy controls how much of the current address leaks on outbound clicks. Permissions-Policy gates camera, microphone and geolocation.
A few numbers help when reading the output. HSTS wants a max-age of at least 15552000 seconds, which is 180 days, and preload lists insist on 31536000. A cache-control of max-age 31536000 with immutable is the standard for fingerprinted assets, while HTML usually wants no-cache so it revalidates. An age header above zero means a proxy served you a stored copy. Compression through gzip or brotli commonly removes two thirds of the transfer size of a text response.
Header work pairs naturally with the rest of the technical toolbox here. Look up what a specific code means with our HTTP Status Codes reference, confirm that redirects land where you think with the Canonical Checker, and when the response is fine but the markup is wrong, run the same address through the Meta Tag Checker. For the network layer underneath, DNS Lookup and IP Address Lookup answer the questions headers cannot.
How the HTTP Headers Checker Works
- 01Enter any public address. The scheme is optional, https is assumed when you leave it off.
- 02A ToolForte server makes the request as ToolForteBot with no cookies and no forwarded headers, so you see the anonymous first response.
- 03Redirects are followed one hop at a time, up to four, and each hop is recorded with its status code and destination.
- 04The final response is broken out into a security verdict, a caching summary, a server disclosure note and a full table of every header returned.
What to fix first in a header report
Work down from the headers that change what an attacker can do. Content-Security-Policy is the heaviest lift and the largest gain, because it decides which scripts may run at all: a policy that names your own origin and your handful of third parties turns an injected script tag into a blocked request. Strict-Transport-Security is the cheapest real win, one line that removes the plain HTTP first request forever, though it is also the one to think about before you ship, since a long max-age is hard to walk back if part of the site is not ready for HTTPS. X-Content-Type-Options with nosniff costs nothing and closes a whole class of upload attacks. Framing protection through X-Frame-Options or CSP frame-ancestors matters for anything with a logged in state. Referrer-Policy and Permissions-Policy are quick tidy ups rather than emergencies. After security, read the caching block. HTML normally wants no-cache so it revalidates on every visit, while fingerprinted assets want max-age of a year with immutable. An age header above zero means a proxy handed you a stored copy, which is often the real explanation for the change that supposedly did not deploy. Finally remove x-powered-by and trim any version number out of the server header. Neither helps a visitor, and both shorten the work for anyone scanning for known holes.
When to Use the HTTP Headers Checker
Reach for it whenever the symptom lives in the response rather than the page. A stale version keeps appearing after a deploy, and you want to know whether a CDN is serving a cached copy. A new reverse proxy or edge config went live and you want proof the headers it promises are actually being added. A security scan came back with a list of header names and you want to see the current state in plain language. A page loads slowly and you suspect it arrives uncompressed. It is also the fastest way to see a redirect chain end to end, which is the usual answer when a URL takes a suspiciously long time to settle.
Common Use Cases
- Proving that a new reverse proxy, edge config or middleware really adds the security headers its configuration claims.
- Working out whether a stale page is a caching problem by reading cache-control, etag and the age header on the live response.
- Turning a scanner report full of header names into a concrete list of what is present and what is missing.
- Looking up what an unfamiliar status code in a redirect chain actually means. → HTTP Status Codes
- Checking whether a response arrives compressed before you go hunting for slow database queries.
Expert Tips
- Roll out Strict-Transport-Security in stages. Start with a max-age of a few minutes, confirm nothing breaks on subdomains, then raise it. A long max-age is enforced by the browser and cannot be withdrawn quickly.
- Ship a Content-Security-Policy in report-only mode first. You will find out which sources your site genuinely uses without breaking anything, and the fails in this tool will remind you that report-only alone blocks nothing.
- If x-frame-options is missing but the CSP declares frame-ancestors, you are covered on every current browser. Adding the older header back is harmless but not urgent.
- Check the same URL with and without a trailing slash. Redirect chains often hide there, and each extra hop is a full round trip before anything renders.
Frequently Asked Questions
Why do the headers here differ from the ones in my browser devtools?→
Is a failing security header an actual vulnerability?→
Why does the tool mention version numbers in the server header?→
Can I check a page that needs a login?→
Related tools
12 suggested- 01DNS Lookup - A, MX, TXT, NS & MoreQuery A, AAAA, MX, TXT, NS, CNAME, SOA, and CAA records for any domain via DNS-over-HTTPS. Free browser-based DNS lookup with a query-all mode.
- 02ZIP Extractor - Open ZIP Files OnlineOpen and extract ZIP files directly in your browser: list contents, preview text and images, download files. Free and private - nothing is uploaded.
- 03Archive Converter and Extractor - ZIP, 7z, RAR, TAR, GZOpen ZIP, 7z, RAR, TAR, TAR.GZ, GZ, BZ2 and XZ archives in your browser, download the files, convert between ZIP, 7z, TAR and TAR.GZ, or create a new archive. Nothing is uploaded.
- 04Video and Audio Converter - MP4, WebM, MP3, GIF, Trim, CompressConvert MOV, AVI, MKV and WebM to MP4, extract MP3 or WAV, compress a video, trim a clip, make a GIF, remove silence and normalise loudness. FFmpeg runs in your browser, nothing is uploaded.
- 05User Agent Parser - Browser & OS LookupParse any user agent string to identify browser, version, engine, OS, and device type, including bots. Free, instant, and fully browser-based.
- 06HTML to JSX Converter - Free & InstantConvert HTML to valid React JSX instantly: className, camelCase attributes, style objects, and self-closed tags. Free, browser-based, and private.
- 07.htaccess Redirect Generator - Apache & NginxGenerate 301 and 302 redirect rules for Apache .htaccess and Nginx, with HTTPS, www, and trailing-slash templates. Free and fully browser-based.
- 08Generate .env.example Files - Free & PrivatePaste a .env file and instantly get a .env.example with secret values stripped. Free, browser-based, and private - credentials never leave your device.
- 09JSON Formatter & Validator - Instant ResultsFormat, validate, and minify JSON with instant error highlighting. Pinpoints syntax errors. Free, private, browser-based.
- 10JSON to CSV Converter - Export InstantlyConvert JSON arrays to CSV format with automatic header detection. Download as CSV file. Free, browser-based - no upload needed.
- 11CSV to JSON Converter - Auto-Detect FormatConvert CSV data to JSON format instantly. Auto-detects delimiters and headers. Free, private, browser-based - no upload needed.
- 12Spreadsheet Merge and Split - Combine or Split CSV and Excel FilesMerge several CSV or Excel files into one, matching columns by name, or split one file into parts by row count or column value. Runs in your browser, nothing uploaded.
From the blog
Further reading- 15 Free Developer Tools Every Programmer Should BookmarkFormat JSON, encode Base64, test regex, decode JWTs, and more. Fifteen browser-based developer tools that run locally with no installation required.11 min read
- Best Free Online Developer Tools in 2026The best free online developer tools for 2026: JSON formatters, regex testers, API builders, and code converters. All browser-based, no install.9 min read
- Developer Utilities: SQL, YAML, JSON, and Code MinificationFormat SQL queries, convert YAML to JSON, work with XML, and minify HTML, CSS, and JavaScript for production. Essential browser-based dev tools.10 min read