Free JSONPath Tester
Query JSON data structures using JSONPath expressions - the JSON equivalent of XPath for XML. Enter sample JSON, write a JSONPath expression, and see matching results instantly. All processing happens locally in your browser.
How to Use
- Paste or edit JSON data in the input area
- Enter a JSONPath expression (e.g.,
$.store.book[*].title) - Click Query to see matching values
Supported Syntax
$.store.book- Navigate nested objects$.store.book[0]- Array index access$.store.book[*]- Wildcard array access$.store.book[?(@.price>10)]- Filter expressions
Privacy
All processing happens locally in your browser. No data is transmitted.
Limitations
This tool supports common JSONPath syntax. Not all JSONPath implementations support the same operators. The filter syntax supports > and < comparisons only.
Last reviewed: July 2026.