Extract every book title
Input
Expression: $.store.books[*].title
Output
["JSON Guide","Go Web"]
Query JSON with JSONPath expressions and inspect matching paths and values.
| JSONPath | Value |
|---|
Run JSONPath expressions locally in your browser, extract matching values, and inspect the full path for every result.
Expression: $.store.books[*].title
["JSON Guide","Go Web"]
Expression: $.store.books[?(@.price < 15)]
Returns book objects whose price is below 15.
Input data, expressions, and query results remain in your current browser.