How to use JSON Path Extractor

  1. On the first line, enter a dot-separated JSON path (for example: user.profile.name or tags.0).
  2. On the following lines, paste your JSON document.
  3. Click Convert to extract the value at that path and copy or download the result.

Example

Input

user.profile.name
{"user":{"profile":{"name":"Alice"}}}

Output

"Alice"

Frequently asked questions

What path format is supported?
Use dot-separated keys like user.profile.name. Arrays can be accessed with numeric segments like tags.0, tags.1, and so on.
What happens if the path does not exist?
The tool reports which path segment was not found so you can adjust your query.