JSONPath Finder

Query JSON data with JSONPath expressions — wildcards, recursive descent, array slices, and more.

100% private — your JSON never leaves your browser
JSON Input
JSONPath Expression
Common presets
Results
🔍

Enter a JSONPath expression above to query your JSON.

JSON Tree View (click node to fill path)

Load JSON above to see the tree view.

JSONPath Syntax Reference
ExpressionDescriptionExample
$Root element$
.keyChild element$.store.name
['key']Child element (bracket notation)$['store']['name']
[n]Array index (0-based)$.books[0]
[*]All elements of array or object$.books[*].title
..Recursive descent (any depth)$..price
[start:end]Array slice (end exclusive)$.books[0:2]
[-1]Last element$.books[-1]