Paste JSON, click any value to get its JSONPath expression. Navigate complex JSON structures visually.
JSONPath is a query language for JSON, similar to XPath for XML. It lets you navigate and extract data from JSON structures using path expressions.
| $ | Root object |
| .key | Child property |
| [0] | Array index |
| ["key"] | Bracket notation (for special chars) |
| .length | Array length |