JSON Yol Bulucu

Paste JSON and click any value to get its path.

Paste JSON and click Parse...
Click a value in the tree
Click a value in the tree

What is JSON Path?

A JSON path describes the location of a value inside a JSON document. It's essential for accessing nested data in JavaScript, Python, and other languages.

Dot notation: data.address.city · clean, readable, works for simple keys.

Bracket notation: data["address"]["city"] · required for keys with spaces, hyphens, or starting with numbers.

Array access: data.tags[0] · zero-indexed position in an array.

Related Tools