Check HTTP response headers

Terminal

Inspect HTTP headers to debug caching, auth, and CDN behavior.

  1. 1

    Head request

    curl -I https://example.com
  2. 2

    Verbose request

    curl -sv https://example.com -o /dev/null

Related commands: curl -I, curl -sv