JSON Query reads a value or set of values out of a JSON document using a compact path like store.books[0].title or store.books[*].price.
It can also flatten the whole document to dotted key paths and rebuild the nested structure from them. It runs in your browser.
No. It supports dot and bracket access, numeric and negative indexes, quoted keys, and a wildcard. Filters and script expressions are not included.
One entry per leaf value, keyed by its full path like a.b.0.c. Unflatten turns that back into nested objects and arrays.
You get an empty result rather than an error.
No. The tool runs entirely on this page.