JSON Path Tester
Query JSON data with JSONPath expressions — test, debug, and extract values
Frequently Asked Questions
What is JSONPath?
JSONPath is a query language for JSON, similar to XPath for XML. It allows you to navigate and extract data from complex JSON structures using dot-notation and bracket expressions.
What expressions are supported?
Root ($), child (.property), recursive descent (..), wildcards (*), array indices ([0]), array slices ([0:5]), and filter expressions ([?(@.price<10)]) are all supported.