JSONPath explorer
Run JSONPath queries on structured data.
About JSONPath explorer
Use a JSONPath expression to select part of a JSON document. Start with the root symbol and add property names, array selectors, or other supported path operations.
Steps, example, and limitations
How to use it
- Paste the JSON to query.
- Enter a JSONPath expression and run it.
- Inspect the returned values and their locations.
Example
Input
JSON: {"items":[{"name":"Alpha"},{"name":"Beta"}]}
Path: $.items[*].nameResult
["Alpha", "Beta"]
Things to know
- The tool uses its bundled JSONPath implementation; syntax from a different engine may behave differently.
- Evaluation is constrained for safety. Do not assume arbitrary JavaScript expressions are supported.