🎯 JSON Path Evaluator
JSON Data
{"store":{"books":[{"title":"Clean Code","author":"Robert Martin","price":29.99,"isbn":"978-0132350884"},{"title":"Refactoring","author":"Martin Fowler","price":39.99,"isbn":"978-0201485677"},{"title":"Design Patterns","author":"GoF","price":44.95,"isbn":"978-0201633610"}],"name":"Dev Books","location":"Jakarta"}}
JSONPath Expression
titles
first book
prices
store name
authors
Results
JSONPath Quick Reference
$
— Root object
.key
— Child property
[n]
— Array index
[*]
— All array elements
..key
— Recursive descent