← BBobop
JSONPath Query
Navigate, query, and extract from JSON data. Surgical precision.
JSON Data
{ "store": { "books": [ {"title": "The Art of War", "author": "Sun Tzu", "price": 9.99, "category": "strategy"}, {"title": "Zero to One", "author": "Peter Thiel", "price": 15.99, "category": "business"}, {"title": "The Lean Startup", "author": "Eric Ries", "price": 14.99, "category": "business"}, {"title": "Meditations", "author": "Marcus Aurelius", "price": 7.99, "category": "philosophy"} ], "location": "Internet", "established": 2026 } }
Query Path
Root $
$.store
books[]
[0]
all titles
all prices
last book
slice [0:2]
Result
Tree View