Skip to content
BEAD

HTTP Message Parser

Parse a header block, raw request, or raw response into structured JSON with smart Set-Cookie / Cache-Control / Content-Type breakdowns.

POST /v1/users HTTP/1.1
Headers (4)
Hostapi.example.com
Content-Typeapplication/json
mediaTypeapplication/json
AuthorizationBearer abc123
Content-Length41
Body (44 bytes)
{"email":"alice@example.com","name":"Alice"}

Three modes

  • Headers only — paste a header block, get structured JSON.
  • Raw request — start line + headers + body, parsed into method/path/version/headers/body.
  • Raw response — status line + headers + body, parsed into version/status/reason/headers/body.

Smart sub-parsing

Set-Cookie, Cache-Control, Content-Type, and Content-Dispositionare split into structured fields so you don't have to eyeball directive lists.

You might also like