sample.harUwarp Sample3 requests2 failed186 ms total time1.3 KB
#MethodStatusTimeSizeURL
1GET200128 ms1.2 KBhttps://example.com/
2GET50045 ms54 Bhttps://example.com/api/user
3POST40112 ms31 Bhttps://example.com/api/login

GET 200 OK

https://example.com/

text/html · 128 ms · 1.2 KB

Timings

blocked: 1 msdns: 12 msconnect: 20 mssend: 1 mswait: 80 msreceive: 14 ms

Request headers

  • Accept: text/html

Response headers

  • Content-Type: text/html; charset=utf-8

Response preview

<!doctype html><title>Example</title>

Drop HAR file

.har / .json — max 40 MB

Help Us Improve

—

(—)

HAR file viewer & analyzer

HAR file analyzer online—open a .har, filter requests, inspect status and timings. Local-first. No signup.

What is a HAR file?

A HAR (HTTP Archive) file is a JSON log of browser network requests and responses—URLs, headers, status codes, timings, and bodies. A HAR file analyzer/viewer lets you open that export, filter entries, and inspect slow or failed requests. Use this free local-first tool to analyze HAR files online without uploading them.

What you can do here

Inspect HTTP Archive exports without installing extra software.
  1. HAR file viewer: Open .har JSON and browse every captured request in a table.

  2. HAR analyzer filters: Search URLs, filter by status class or HTTP method, and jump to failures.

  3. Request detail panel: Inspect headers, query params, timings, and response text previews.

  4. Local-first privacy: Analyze HAR files in the browser—no upload of cookies or auth tokens.

How to analyze a HAR file

From export to filtered insights.
  1. Export a HAR

    Capture traffic in Chrome/Firefox/Edge DevTools Network, then export .har.

  2. Open it here

    Drop the file or paste JSON into the HAR viewer.

  3. Filter and inspect

    Search, narrow by status/method, then open rows to read headers and timings.

Tips for HAR analysis

Find network bugs faster.
  • 01

    Filter 4xx/5xx first

    Failed API calls often explain the bug before you dig into timings.

  • 02

    Watch wait vs receive

    High wait usually means slow server/TTFB; high receive means large payloads.

  • 03

    Redact before sharing

    HARs can include Authorization cookies—strip secrets before sending to teammates.

  • 04

    Preserve log when capturing

    Enable Preserve log in DevTools so navigations do not wipe the export mid-repro.

Great for

When a HAR file analyzer helps.
  • Front-end debugging

    Reproduce “works on my machine” network failures from a shared .har.

  • Performance triage

    Spot slow endpoints and heavy assets from a single page load capture.

  • Support handoffs

    Open customer-provided HAR files without installing desktop analyzers.

Why use this HAR analyzer

Fast local inspection of network archives.
  • Local-first

    Sensitive HAR contents never leave the browser for this tool.

  • Free to use

    Open and analyze HAR files with no signup.

  • Built for “har file” jobs

    Viewer + filters + detail panel cover the usual analyze-and-debug loop.

  • No DevTools required to review

    Teammates can inspect an exported .har without reproducing the session.

Technical notes

How this HAR viewer works.
Format
Supports HAR 1.2-style JSON with a top-level log.entries array (also accepts log as root).
Fields shown
Method, URL, status, MIME type, total time, body size, timings, headers, query string, text preview.
Response bodies
Text previews are truncated; base64 bodies are labeled rather than fully decoded.
Privacy
FileReader + JSON.parse only—no server upload for analysis.

Sources & References

HAR format and browser capture references.
  • “The HAR format is an archival format for HTTP transactions that can be used by a web browser to export detailed performance data.”
    — W3C Web Performance — HTTP Archive format

    HTTP Archive (HAR) format: Defines the JSON structure (log, entries, timings) this HAR analyzer parses. w3c.github.io/web-performance/specs/HAR/Overview.html

  • “Use the Network panel to log and inspect network activity, including exporting HAR files for sharing.”
    — Chrome Developers — Network panel overview

    Chrome DevTools — Network features: Documents how developers capture the HAR files you open in this viewer. developer.chrome.com/docs/devtools/network/

  • “The FileReader object lets web applications asynchronously read the contents of files stored on the user's computer.”
    — MDN Web Docs — FileReader

    MDN — FileReader: Used to load .har files entirely in the browser for local-first analysis. developer.mozilla.org/en-US/docs/Web/API/FileReader

Frequently Asked Questions

Quick answers about this tool—open a question to read more.