How to explore JSON as a collapsible tree
A raw API response is a wall of braces. A tree view gives you the shape first (three objects, each with five fields, one of which is an array of twelve) and the values second, which is the order you actually need them in when you are trying to understand a payload.
Paste JSON here and it is parsed and rendered as a colour-coded collapsible tree in your browser, with parse errors reported the moment they appear.
- Paste your JSON into the input pane. The tree updates as you type.
- Click any object or array node to expand or collapse it, or use Expand all and Collapse all.
- Read the colour coding: strings green, numbers blue, booleans magenta, null grey.
- Fix any parse error, which reports the exact character position of the problem.
- Click Copy formatted for a normalized two-space-indented version.