Developer tool

JSONPath Tester

Evaluate property, array index and wildcard JSONPath expressions against JSON data.

How this tool works

1. Add JSON

Paste the data you want to search.

2. Write a path

Describe which property or array item to find.

3. See matches

Get every matching path with its value.

Try a ready-made example

JSONPath quick guide

$root JSON
.nameproperty
[0]array item
[*]all items

Matching paths and values

3 matches
$.hobbies[0]
"reading"
$.hobbies[1]
"hiking"
$.hobbies[2]
"coding"