JSON Query
Find the one field you need inside a wall of JSON. Type a path, or click one from the list of everything the document contains.
Document
Result
Paste a document to query it.
Every path
What the path syntax does
$- the whole document
a.b- the key
binsidea a[2]- the third item of an array
a[-1]- the last item
a[*]- every item, collected into a list
*.name- the name of every child
..name- every
nameat any depth a[?kind=book]- items whose
kindisbook a.length()- how many items or keys
a.keys()- the key names