Compare & inspect
JSONPath Finder
Search JSON keys or values and copy the exact JSONPath for every match, including nested arrays.
✓ Free✓ No sign-up✓ Local session
JSON inputJSON
Path searchJSONPath
How it works
Use Path Finder in three steps
- 01
Paste JSON and enter a key or value to search.
- 02
Choose Find paths.
- 03
Copy a matching JSONPath.
Quick example
From input to useful output
Search JSON keys or values and copy the exact JSONPath for every match, including nested arrays.
{
"users": [
{"id": 101, "profile": {"name": "Maya"}},
{"id": 102, "profile": {"name": "Noah"}}
]
}Common questions
JSONPath Finder FAQ
Are arrays supported?+
Yes. Matches include array indexes such as $.users[0].profile.name.
How are unusual property names represented?+
Keys that are not simple identifiers use bracket notation with quoted names.