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 b inside a
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 name at any depth
a[?kind=book]
items whose kind is book
a.length()
how many items or keys
a.keys()
the key names