- Is my HAR file uploaded?
- No. The HAR is parsed locally in your browser. The app does not upload, store, or log your network capture.
- What does this HAR validator check?
- It checks that the file is valid JSON, has a top-level log object, includes at least one entry, and that every entry has an absolute request URL plus a numeric response status.
- Does it inspect cookies, headers, request bodies, or timing data?
- No. This page focuses on safe structural validation. Always redact sensitive headers, cookies, tokens, and payloads before sending a HAR to another person or system.
- Why does my browser-exported HAR fail?
- Common causes are copying only part of the file, exporting the wrong tab, truncating a large capture, redacting request.url entirely, or converting numeric response statuses into strings.
- Can I validate HAR files from automated tests?
- Yes. HAR files generated by Playwright, Cypress plugins, proxies, and browser automation can be pasted here as long as they follow the expected HTTP Archive JSON shape.