Developer Tools
JSON Path
Run JSONPath queries against any JSON value.
Loading interactive tool...
About this tool
Run JSONPath expressions ($.users[?(@.age>30)].name) against your JSON and see every match with its canonical path. Powered by jsonpath-plus, the most permissive JSONPath flavor.
Frequently asked questions
Which JSONPath dialect is used?
jsonpath-plus, which extends Goessner's original spec with filter expressions, recursive descent, and parent/root selectors.
Examples?
$.users[*].name returns every user name. $..price returns every 'price' anywhere. $.users[?(@.age>30)] filters users.