Gzip / Brotli Compression Test
Fetch a URL from our server and report the Content-Encoding header it returns, so you can see whether the response arrived gzip or brotli compressed.
How to use this tool
- 1
Paste the full URL you want to check, including the https:// scheme.
- 2
Submit the form to have our server request that URL.
- 3
Read the result card: it shows the Content-Encoding value (such as gzip or br) and whether compression was detected.
- 4
Adjust your server configuration if the card reports no compression, then re-run the check.
What does this compression test actually check?
When a browser requests a page, it sends an Accept-Encoding header advertising which compression algorithms it supports, and the server may compress the response and announce the algorithm it chose in the Content-Encoding response header. The two common values are gzip (DEFLATE, defined in RFC 1952, supported everywhere) and br (Brotli, RFC 7932, usually a few percent smaller than gzip on text). This tool makes a single server-side request to the URL you provide and inspects only that Content-Encoding header on the response. If the header is present with a value like gzip or br, it reports the response as compressed; if the header is absent or empty, it reports no compression detected. It does not measure the actual byte savings, does not test multiple Accept-Encoding combinations, does not crawl sub-resources like your CSS and JavaScript files, and does not evaluate compression level or quality. Treat it as a fast yes/no signal for one URL. Because the request comes from our server rather than your browser, a CDN may route it differently than it routes your visitors, and some origins vary compression by user agent or path.
Common use cases
Confirm that a newly deployed Nginx or Apache config is actually emitting gzip or brotli on your homepage.
Verify a CDN such as Cloudflare or Fastly is compressing HTML responses at the edge.
Spot-check an API endpoint that returns large JSON to see whether it is being compressed in transit.
Diagnose a slow page by ruling compression in or out before digging into other performance causes.
Check whether a specific path (not just the root) is served compressed when rules differ per route.
Demonstrate to a client or teammate, with a shareable result, that their pages are or are not compressed.
Frequently asked questions
Does this tool upload or store the URL I enter?▼
Why does it report no compression when my browser shows gzip?▼
What is the difference between gzip and br in the result?▼
Does it test my CSS, JS, and image files too?▼
Does a compressed result tell me how much bandwidth I am saving?▼
Why do I need to include https:// in the URL?▼
Related tools
DNS Lookup
Look up DNS records (A, AAAA, MX, TXT, NS) for any domain.
WHOIS Lookup
Get full WHOIS data for any domain.
SSL Certificate Checker
Check SSL certificate validity, issuer, and expiry.
HTTP Header Analyzer
Inspect HTTP response headers and security signals.
HTTP Status Code Checker
Check status code of any URL — single or bulk.
Redirect Chain Tracer
Follow every hop in a redirect chain.