jsontoolskit.org
JSON and JSON Schema utilities, in the browser
Say hi →

List All JSON Paths

every path with its type · dot, JSON Pointer or bracket · updated 28 July 2026

Walk a JSON document and list every path it contains, with the type and optionally the value at each one. Choose dot notation for readability, RFC 6901 JSON Pointer for standards work, or bracket notation for code you are about to write.

Paste input to start.

How to list every path in a JSON document

  1. Paste your JSON, or drop a file onto the input pane.
  2. Pick the notation you need. Pointer form is what JSON Patch and schema validation errors use; dot form is easier to read.
  3. Switch Include to Objects and arrays too when you want the structure, not just the leaves.
  4. Turn on Show values to get a flat audit of the whole document.
  5. Copy the list, or switch Output as to a JSON array to feed it into another tool.

What each notation is for

Useful for

Privacy

Nothing is uploaded. The conversion runs in this tab using your own browser's JavaScript engine — no server sees your data, and the page keeps working with the network disconnected.

FAQ

Why is the root shown as an empty pointer?

Because RFC 6901 defines the empty string as the pointer to the whole document. In dot and bracket notation the root is just $.

How does it handle very large documents?

Every leaf produces one line, so a megabyte of JSON produces a lot of output. Use Leaf values only and leave values off to keep it manageable, or narrow the input first with Extract.

Can I resolve one of these paths back to its value?

Yes — copy a pointer into JSON Pointer, which resolves it and explains any failure.