JSONPath Tester
Free online JSONPath tester — evaluate JSONPath expressions against your JSON data and see matching results instantly.
Examples
FAQ
What is JSONPath?
JSONPath is a query language for JSON, similar to XPath for XML. It lets you extract specific values from a JSON structure using expressions like $.store.book[*].title.
What syntax does this tool support?
It supports $. (root), .property, [index], [*] (all elements), .. (recursive descent), and [?(expr)] (filter expressions).
What does $ represent?
$ is the root element of the JSON document. Every JSONPath expression starts with $.