Advertisement

JSON Path Tester

Query JSON data with JSONPath expressions. Paste your JSON, write a path expression, and see matched results instantly.

Advertisement

About JSON Path Tester

JSONPath is a query language for JSON, similar to XPath for XML. This tool lets you write JSONPath expressions and instantly see the matched data from your JSON document.

Supported Syntax

$ — root object. .key or ['key'] — child access. [0] — array index. [*] — wildcard. .. — recursive descent. [start:end] — array slice. [-n:] — last n elements.