What is a HAR file?
HAR (HTTP Archive) is a JSON-based format for recording HTTP traffic between a client and a server. Every major browser’s DevTools can export the current Network tab as a .har file, and proxies like Charles, Fiddler, and Insomnia produce HAR exports as well.
A HAR file is a snapshot of a browsing session. it captures URLs, methods, status codes, request and response headers, cookies, request and response bodies (when available), and a detailed timing breakdown per request.
Bodies are often JSON, but gRPC-Web and application/x-protobuf responses show up as opaque binary (or Base64 inside the HAR JSON). Paste that body into the Protobuf Decoder to inspect field numbers and nested messages without a .proto schema.