Devtools.supstudio.in

Tools/JSON

JSONPath

What this is

Full JSONPath (filters, recursive descent, scripts) is a spec people argue about. This tool implements the subset you type a hundred times a day: $, .key, ["key"], [0]. Point it at $.items and the table/CSV converters follow. It is not JMESPath and not jq — those belong in a terminal. For debugging an API body, a path bar next to the tree is the whole job.

Open the formatter — paste stays in this tab.

$.items[0].sku

FAQ

$.a.b vs $['a.b']?
Dot keys must be identifiers. Keys with dots or spaces need bracket quotes.
.. recursive?
Not supported. Walk with the tree filter or write jq.

Related