JSONPath Tester

Test JSONPath expressions against JSON data with live results

Supported syntax:
$ — root object
.key — child property
..key — recursive descent
[*] — all array elements
[0], [-1] — array index
[0,2] — multiple indices
[0:3] — slice notation
[?(@.price < 10)] — filters
[]