Gzip with sizes
- Content-Encoding: gzip
- Content-Length: 1024
- X-Original-Size: 4096 -> ratio 0.25
web validator
Check HTTP response headers for gzip/br compression, numeric lengths, and basic ratios—client-side only.
Checks for Content-Encoding (gzip, br, deflate).
Ensures Content-Length is numeric when present.
Supports optional X-Original-Size to compute compression ratio.
Runs fully client-side; no data stored.
HTTP response headers
Paste raw headers (one per line) from curl/DevTools. Include Content-Encoding and sizes if available.
This compression validator checks Content-Encoding and size headers entirely in your browser to confirm gzip/br are set and sizes are numeric.
Use it to QA CDN/server responses pasted from DevTools or curl before shipping.
All validation happens in your browser. No data is sent, logged, or stored.
Header-level checks only; does not measure real transfer or decode bodies.