Test JSONPath expressions on any JSON document — get matched values instantly.
$ — root element. — child operator (e.g., $.store).. — recursive descent (e.g., $..author)* — wildcard for all children[n] — array index (e.g., $.book[0])[start:end:step] — array slice[?(@.price < 10)] — filter expression@ — current node in filterStandard JSONPath expressions — dot and bracket notation, wildcards, array slices, and filter expressions like $.store.book[?(@.price<10)].
Results update in real time as you type, with matching values highlighted, so you can iterate on the expression until it selects exactly what you need.
Yes — built-in example queries against sample JSON show common JSONPath patterns you can adapt.
Want more detail? Read How to Use JSONPath Tester: Practical Guide and Best Practices.