HTTP headers parser8 headers
Request / status line
GET /api/users HTTP/1.1
Parsed headers
| Name | Value | |
|---|---|---|
| Host | example.com | |
| User-Agent | Mozilla/5.0 | |
| Accept | application/json | |
| Accept-Encoding | gzip, deflate, br | |
| Authorization | Bearer eyJhbGciOiJIUzI1NiJ9 | |
| Cache-Control | no-cache | |
| Set-Cookie | session=abc123; Path=/; HttpOnly | |
| Set-Cookie | theme=dark; Path=/ |
Each line is split at the first colon into a name and a trimmed value. A leading request or status line is detected and shown separately, and duplicate header names like Set-Cookie are kept. Everything runs in your browser.