Skip to main content
DevPipe logoDevPipe

HAR & SOAP Viewer

Summarize HAR archives and validate SOAP envelope structure.

Mode

Viewing HAR archives and SOAP envelopes

HAR files capture browser network waterfalls for performance debugging. Summaries highlight slow requests, failed status codes, and duplicate assets. SOAP validators check envelope namespaces and body structure when integrating legacy enterprise services.

HAR exports contain cookies, tokens, and response bodies. Treat files as secrets; scrub before sharing. SOAP faults hide inside XML bodies parsers must surface explicitly.

Large HARs stress browser memory; filter to failing entries before full parse when possible.

Inspect HAR and SOAP locally from repro sessions with customer data. Avoid uploading archives to public HAR viewers.

Reference Guide

QA tool - all processing runs locally in your browser. No data is sent to a server.

Operation: har-parse

  • Paste a full HAR export from Chrome DevTools or Playwright.
  • Summarizes up to 20 requests with method, status, and URL.

Paste input, click Run, and copy the result. For two-input tools, fill both fields before running.

Example Input

{"log":{"entries":[{"request":{"method":"GET","url":"https://devpipe.dev"},"response":{"status":200}}]}}

A sample loads automatically when you open this tool. Use Load Sample to reset it.

Related tools