- What's 'raw HTTP request' format?
- The wire format: `POST /api HTTP/1.1\nHost: ...\nContent-Type: ...\n\n{body}`. What you see in Wireshark or browser 'Copy as raw'.
- Why replay?
- Reproducing customer issues, testing a failing request locally, or converting a network capture into code for automated retries.
- Does it preserve all headers?
- Yes — including ones fetch would set automatically (User-Agent, Accept). Toggle to exclude browser-default headers if you want a minimal equivalent.
- What about WebSocket upgrades?
- HTTP requests only. WebSocket handshakes are specialized — the tool flags them and suggests a WS-specific replayer.