Testing
JSONPath Query
Run JSONPath-style queries against JSON and learn the supported syntax. Everything runs locally in your browser.
Supported JSONPath syntax
$
Root JSON value
$.user.name
Dot property access
$['user-name']
Bracket property access
$.users[0]
Array item by index
$.users[*]
All items or properties
$..id
Recursive search for key
Matches: 0
Run a query to see matching paths and values.
How to use
- 1Paste JSON data.
- 2Enter a JSONPath query like $.users[0].name or $..id.
- 3Run the query and review matched paths and values.
FAQ
Does JSONPath Query send my data to a server?
No. DevBox Tools runs this tool in your browser, so your input stays on your device.
Do I need an account?
No login is required for the MVP. Open the tool and use it immediately.
Which JSONPath syntax is supported?
This MVP supports $, dot properties, bracket properties, array indexes, wildcards, and recursive ..key search.