Run JSONPath expressions against any JSON document and see the matching results instantly. Perfect for exploring API responses and configs — all evaluated locally in your browser.
How to use JSONPath Query Tester
Paste a JSON document.
Enter a JSONPath query like $..book[*].title.
See matches and the match count update live; copy the results.
Frequently asked questions
Which JSONPath syntax is supported?
It uses the jsonpath-plus engine, which supports the common JSONPath syntax including wildcards, recursive descent (..), array slices, and filter expressions like [?(@.price < 10)].
What happens if my query or JSON is invalid?
The tool reports a clear error — distinguishing invalid JSON from an invalid JSONPath expression — instead of failing silently.