World’s largest virtual agentic engineering & quality conference
Analyze and inspect HTTP Archive (.har) files securely in your browser. Replicates the familiar Chrome DevTools Network Tab interface for side-by-side debugging.
Drag & drop your HAR file here
or click to browse (JSON format supported)
A HAR file, short for HTTP Archive, is a JSON log of a browser session's network activity. It records every HTTP request and response the page made, along with the request and response headers, query strings, cookies, payloads, status codes, and detailed timing for each call. The format is standardized, so a HAR captured in one browser opens cleanly in another tool.
HAR files are generated from the browser developer tools. When you open the Network tab in DevTools and reload a page, the browser records the full request waterfall. Exporting that capture writes it to a .har file you can save, share, and replay later. Because a HAR is plain JSON, it is portable evidence of exactly what a user's browser sent and received during a session.
Inspecting a capture takes only a few seconds, and you do not need to install anything. Follow these steps to view and analyze a HAR file:
As a tool, the HAR file viewer surfaces everything stored inside a capture in a familiar DevTools-style layout. Here is what the viewer renders for each load:
A HAR file is produced from the browser developer tools, not from this viewer. The steps differ slightly per browser, but the pattern is the same: open DevTools, record the Network tab, reload, then export. Here is how to capture one in the major browsers:
A HAR capture is useful anywhere you need to see exactly what a browser sent and received. The viewer speeds up each of these developer and QA workflows by rendering the capture for you:
This viewer is maintained by TestMu AI (formerly LambdaTest), the team behind a unified testing platform, so it is shaped by the same focus on reliable, performance-tested web apps that QA and SDET engineers depend on. For related debugging work, the JSON Validator helps you confirm that API response bodies pulled from a HAR are well formed before you act on them.
A HAR (HTTP Archive) file is a JSON log of a browser session's network activity. It records every HTTP request and response with its headers, payloads, cookies, status codes, and timing data, exported from the browser DevTools Network panel.
Yes, the HAR file viewer is completely free with no signup, login, or usage limit. Upload any .har export and inspect as many requests as you need. The tool is maintained by TestMu AI (formerly LambdaTest).
No. The HAR file is parsed entirely in your browser and nothing is uploaded. Sensitive headers, cookies, auth tokens, and request bodies inside the file never leave your machine, which keeps captures private.
Open DevTools, switch to the Network tab, reload the page, then export. In Chrome and Edge use the download icon, in Firefox use the gear menu and choose Save All As HAR, and in Safari use the Export button in the Network tab.
Yes, when the HAR was captured with content enabled. The inspector renders request payloads and JSON, HTML, or plain text response bodies, with pretty printing for JSON so you can read API responses without manual formatting.
Yes. Filter controls let you narrow the request list by HTTP method, status code range, resource type, or a URL substring. This turns a noisy capture of thousands of requests into just the ones that matter for your investigation.
Yes. HAR is a standardized format, so the viewer accepts captures exported from Chrome, Edge, Brave, Firefox, and Safari. Any valid .har file with a log.entries array will load and render correctly in the inspector.
Yes. Each request shows its blocked, DNS, connect, TLS, send, wait (TTFB), and receive phases on a timing bar. This makes it easy to spot slow DNS resolution, long TLS handshakes, or high time to first byte during performance triage.
It lets you reproduce a user's exact network conditions from a single attached file, with no screen share or remote access. Support and QA teams use it to triage bug reports, slow page complaints, and API failures with concrete evidence.
Did you find this page helpful?
World’s largest virtual agentic engineering & quality conference