HTTP Headers Analyzer is a simple NestJS API that performs an HTTP request to a given public URL and returns the response headers. This tool is useful for debugging, web inspections, and security analysis.
Given a URL, the API:
- Sends an HTTP
HEADrequest (or fallback toGETif needed) - Extracts the response headers (like
Content-Type,Server,Cache-Control, etc.) - Returns them in JSON format
GET /headers?url=https://www.google.com
{
"url": "https://www.google.com",
"headers": {
"content-type": "text/html; charset=ISO-8859-1",
"x-frame-options": "SAMEORIGIN",
"strict-transport-security": "max-age=31536000; includeSubDomains",
"date": "Mon, 12 May 2025 09:00:00 GMT"
}
}- Check if a site has CSP, HSTS, or X-Frame-Options enabled
- Inspect server technologies via headers
- Validate CDN caching headers
- Learning HTTP header behavior without browser devtools
Made with ❤️ by Atelier Busco
MIT © Atelier Busco