Test JSONPath expressions against JSON data and inspect the matched values or paths. This is useful when debugging API responses, extracting fields, writing automation rules, or documenting nested data structures.
The tester supports common JSONPath syntax including root $, dot properties, bracket properties, array indexes, wildcards, unions, and recursive descent such as $..price.
Use matched paths when you need to understand where values live in a large response. Use matched values when you want the extracted data ready to copy into tests, docs, or another tool.
JSONPath implementations differ. This tester focuses on property selection, array indexes including negative indexes, wildcards, unions, and recursive descent. Filter expressions, script expressions, and array slices are not evaluated. Test the same expression in the destination library before relying on it in production automation.
Related tools: JSON Schema Validator · JSON Parser