>_ JSONPath Tester

100% Local

Live JSONPath evaluator. Paste JSON, type a path, see matches. Supports the common subset: $ (root), .field, ['field'], [n] index, [*] wildcard, .. recursive descent.

Syntax Reference

$Root of the document
.fieldChild field by name
['field']Bracket access (for keys with special chars)
[n]Array index (negative supported, e.g. [-1] for last)
[n,m]Multiple indices (returns array of those elements)
[*]All elements of array or all values of object
..fieldRecursive descent: any field at any depth
..[*]Every value at every depth (flat list of leaves)