JSON Path Finder
Find and extract values from JSON using JSONPath expressions
JSON Input & JSONPath
Results
No results yet
Enter JSON data and a JSONPath expression to find values
JSONPath Examples
$.users[0].name
Get first user's name
$.users[*].age
Get all users' ages
$..name
Find all "name" values recursively
$.users[?(@.age > 25)]
Filter users older than 25
$.company.name
Get nested company name
$.users.length()
Get array length