Inspect
JSON Viewer
Paste JSON on the left and explore it as a collapsible tree on the right. Click any value to see its path, then copy the path or the value itself.
Inspect
Paste JSON on the left and explore it as a collapsible tree on the right. Click any value to see its path, then copy the path or the value itself.
Walkthrough
Use cases
Reading a large API response. A 500-line JSON blob is far easier to navigate when nested objects collapse to a single line.
Building a jq query or JSONPath. Click values to grab the exact path, then use it in jq, JSONPath, or your own code.
Reviewing a config file. Walk through a nested settings file level by level instead of scrolling through raw text.
FAQ
No. Parsing and tree rendering happen entirely in your browser with JavaScript's built-in JSON.parse. Nothing is transmitted, logged, or stored — closing the tab clears everything.
Very large payloads (multiple megabytes) may take a moment to render since the tree is built on the main thread. Typical API responses and config files render instantly.
The status line shows the exact error, including the line and column where parsing failed, so you can fix the input directly.
Related