JSONPath Tester
Test and debug JSONPath expressions against real JSON data. Supports paths, wildcards, and recursive descent.
#jsonpath#json#query#tester#jmespath#developer#api
Loading tool...
How to use
- 1Enter a JSON object with "path" and "data" fields
- 2path: JSONPath expression (e.g. $.user.name)
- 3data: The JSON data to query against
- 4Click "Process" to see matching results
Frequently Asked Questions — JSONPath Tester
What is JSONPath?+
JSONPath is a query language for JSON, similar to XPath for XML. $ represents root, . accesses properties, [n] accesses arrays.
What does $.store..price mean?+
Find all "price" fields at any depth within "store" (recursive descent).