DevToolKit

JSON Path Finder

Explore JSON as an interactive tree. Click any node to get its JSONPath expression instantly.

No data sent to server
JSON Input
Ctrl+Enter

Related Tools

What is JSONPath?

JSONPath is a query language for JSON, similar to XPath for XML. It provides a standardized way to navigate and extract data from JSON documents using path expressions. For example, $.store.books[0].title selects the title of the first book in a store object.

JSONPath Syntax

Paths start with $ (the root). Dots (.) navigate into objects, and square brackets ([n]) index into arrays. Wildcards (*) and filters ([?(...)]) allow more complex queries.