Skip to content

Tree View

The Tree view renders JSON responses as an interactive, expandable tree structure. It is only available for JSON responses.

  • 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
// 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"

Tree view is most useful for:

  • Large, deeply nested JSON responses
  • Exploring unknown API response structures
  • Quickly finding specific values without reading raw text