DEVELOPER TOOL
JSON Path Explorer
Query, filter, and extract data from JSON using JSONPath expressions. Like jq in your browser — with live results.
100% client-side
Live results
No data sent to server
$
Type a JSONPath expression and press Enter or click Run Query
JSON Input
Results will appear here...
| Expression | Description |
|---|---|
$.store.book[*].author |
All authors of all books |
$..author |
All authors (recursive descent) |
$.store.* |
All things in the store |
$.store.book[0] |
The first book |
$.store.book[-1] |
The last book |
$.store.book[0,1] |
The first two books |
$.store.book[?(@.price < 10)] |
Books cheaper than $10 |
$.store.book[?(@.isbn)] |
All books with an ISBN |
$..price |
All prices (recursive) |
Click any expression to try it with the sample data