Query JSON data with JSONPath expressions online. Extract specific values, filter arrays and navigate nested JSON structures using JSONPath syntax. Free tool.
Your data never leaves your browserRelated
JSONPath is a query language for JSON, similar to XPath for XML. It allows you to navigate and extract data from JSON structures using path expressions like $.store.book[0].title.
$ = root, $.key = property, $[0] = array index, $..key = recursive descent, $[?(@.price < 10)] = filter expression.