JSONPath Tester

Query and filter JSON data using JSONPath expressions.

Click "Evaluate" to query your JSON

JSONPath Syntax Reference

$ — Root object

. or [] — Child operator

.. — Recursive descent

* — Wildcard (all children)

[n] — Array index

[start:end] — Array slice

[?(@.field)] — Filter expression

Examples: $.store.book[0].title · $..author · $.store.book[?(@.price<10)]