JSONPath Tester
Evaluate common JSONPath selectors against JSON data locally.
Paste JSON, enter a JSONPath expression, and inspect matched values without sending the data away from the page. The tester supports a documented subset of common selectors so results are predictable.
How to use
Paste valid JSON, enter a path starting with $, and click Evaluate path. The output shows matched JSON values, optionally prefixed by the matched path.
The supported subset includes $, dot properties such as $.store.book, bracket properties such as $["store"], array indexes such as [0], and wildcards such as [*]. Object wildcards return each property value; array wildcards return each array element.
Use quoted bracket properties for names that contain spaces, punctuation, brackets, or characters that cannot be written with dot notation.
Filters, recursive descent, unions, slices, functions, and script expressions are intentionally unsupported. Missing properties return no matches unless the missing-path option is enabled.
Everything runs in your browser. Do not paste secrets into any web tool unless you trust the device and page context you are using.