JSONPath Tester
Test JSONPath-style expressions against JSON and see matched values instantly.
2 matches
Output
Enter JSON data and a JSONPath-like expression using $, dot notation, [index], and [*] wildcards to see exactly which values match. All evaluation happens locally in your browser.
How to use
- Paste your JSON data into the input box.
- Write a path expression such as $.store.book[*].title.
- View the matched values and the total match count below.
Frequently asked questions
- What path syntax is supported?
- The root $, dot notation like .key, array indexes like [0], and the wildcard [*] (or .*) for all items.
- Does it support recursive descent (..)?
- No, this tester focuses on a simple, predictable subset: root, dot keys, indexes, and wildcards.
- What happens with an invalid path?
- An error message is shown instead of results, so you can quickly spot a typo in your expression.