Manipulation Tools

JSON Path Finder

Look up the value at one exact path in a JSON document, using dot or bracket notation.

What does this tool do?

Look up the value at one exact path in a JSON document, using dot or bracket notation. Everything runs locally using JavaScript in your browser — nothing you paste or upload is ever sent to a server.

How to use this tool

  1. Paste your json document into the left-hand box.
  2. Fill in the path field above the input.
  3. Click Find Value.
  4. Copy the value at path from the output box.

Frequently asked questions

What path syntax is supported?

Dot notation for object keys and square brackets with a number for array indexes, e.g. user.address.city or items[0].id.

What happens if the path doesn't exist?

The tool reports exactly how far it got before the path broke, making it easy to spot a typo or a missing field.

How is this different from the JSONPath Tester tool?

This tool resolves one exact, literal path. The JSONPath Tester tool supports wildcards (*) and recursive descent (..) to match many values at once.