Tree View
The Tree view renders JSON responses as an interactive, expandable tree structure. It is only available for JSON responses.
Features
Section titled “Features”- Expand/Collapse — Click arrows to expand or collapse objects and arrays
- Type Indicators — Values are color-coded: strings in green, numbers in blue, booleans in purple, null in gray
- Key Navigation — Object keys are displayed on the left, values on the right
Example
Section titled “Example”// Response body:{ "user": { "id": 1, "name": "John", "active": true, "tags": ["admin", "editor"] }}
// Tree view displays:// ▶ user// id: 1// name: "John"// active: true// ▶ tags (2 items)// [0]: "admin"// [1]: "editor"When to Use Tree View
Section titled “When to Use Tree View”Tree view is most useful for:
- Large, deeply nested JSON responses
- Exploring unknown API response structures
- Quickly finding specific values without reading raw text