How to Use the JSONPath Evaluator
TL;DR
- Open JSONPath Evaluator.
- Paste JSON and enter a JSONPath expression.
- Click Evaluate → view result as list or in Tree View.
Examples
$..price // all prices
$.store.book[0].title // first title
$.phoneNumbers[*].number // all numbers
$.phoneNumbers[?(@.type=="home")].number // filter by field
Tips
- Enable Auto‑correct JSON to fix minor input issues before evaluating.
- Use Tree View for nested results; switch to raw to copy JSON.
- Copy/Download buttons help share results quickly.
Related
JSONPath Cheatsheet ·JSON Formatter