JSON Path Finder

Paste JSON and click any key or value to see its path. Navigate complex nested structures visually.

Input JSON
Path
Tree

Frequently Asked Questions

What is a JSON path?

A JSON path is a string notation that describes the location of a value in a JSON structure, like data.users[0].name — used to access nested values in code.

What notation does it use?

It uses dot notation for object keys and bracket notation for arrays — e.g. root.items[2].price. Keys with special characters use bracket notation.

Can I search for values?

Yes — use the search box to filter the tree by key name or value. Matching paths are highlighted.

Is my data stored?

No. Everything runs in your browser. Nothing is sent to any server.