Guides · Getting started

Reading JSON as a tree

A tree is just the same document with each object and array as a node. Click a node, copy its path, then query or edit that branch.

Root type

Most API bodies are an object. List exports are sometimes a root array. If orders live under data.list, do not look for them on the root.

Objects vs arrays

Object keys have names. Array slots have indexes. $.user.addresses[1] is not $.user.address. Wrong names make JSONPath return nothing — see JSONPath.

Null vs missing

A missing key is not in the tree. A key with null is there. Front-end empty checks should treat those differently.