Test JSONPath expressions and extract values from JSON. JSONPath Tester is a free online tool from the ToolsRift JSON Tools collection. It runs entirely in your browser — nothing to install, no signup, and your data never leaves your device.
JSONPath is a query language for JSON, similar to XPath for XML. Developed by Stefan Goessner.
$ represents the root of the JSON document. $.users[0].name gets the first user's name.
$ (root), . (child), [] (subscript), * (wildcard), [?(@.prop)] (filter), .. (recursive descent)