Skip to content
My Tiny Utils

Search tools

Type to find a tool, then press Enter to open it.

HTTP Headers Parser

Paste raw HTTP headers and get a clean breakdown with explanations of common headers, security headers, and cookies.

Processed locally in your browser — nothing is uploaded.

0 characters

As JSON

Output appears here…

About HTTP Headers Parser

Paste headers copied from DevTools, cURL -v output, or a raw HTTP exchange. The parser normalizes them into name-value pairs, explains what well-known headers mean, and exports them as JSON for use in code.

Common uses

  • Understand a response's caching behavior at a glance
  • Check which security headers a server sends
  • Convert copied headers into a JSON object for fetch or Axios

Example

Input

Content-Type: application/json
Cache-Control: max-age=3600, public

Output

{
  "Content-Type": "application/json",
  "Cache-Control": "max-age=3600, public"
}