JSONPath Query Tool
Query JSON data using JSONPath expressions. Extract specific values from complex JSON structures.
Try:
JSON Data
Loading editor...
Query Results
Enter a JSONPath query (e.g., $.store.book[*].author)
JSONPath Syntax
| Expression | Description |
|---|---|
| $ | Root object |
| .property | Child property |
| [n] | Array index |
| [*] | All elements |
| .. | Recursive descent |
| [?(@.price<10)] | Filter expression |
| [start:end] | Array slice |