JSONPath Explorer
Query and extract data from JSON using JSONPath expressions. Test your queries instantly with live results.
JSON Data
Paste your JSON here...
Loading editor...
Results will appear here...
Loading editor...
JSONPath Syntax Reference
| Expression | Description |
|---|---|
| $ | Root object |
| .property | Child property |
| [n] | Array index (0-based) |
| [*] | All array elements |
| .. | Recursive descent |
| [?(@.price < 10)] | Filter expression |
| [0:3] | Array slice |