JSONPath Tester
Test JSONPath expressions against JSON data. Free online JSONPath tester and query tool.
Common JSONPath Expressions
$ - Root object
$.store.book[*].author - All authors
$..author - All authors (recursive)
$.store.* - All things in store
$..book[0,1] - First two books
$..book[?(@.price < 10)] - Books cheaper than 10
About JSONPath Tester
Test JSONPath expressions against JSON data in real-time. JSONPath is a query language for JSON, similar to XPath for XML, making it easy to extract specific data from complex JSON structures.
Learn more about JSONPath syntax and advanced queries →