Search for a tool or command
Query JSON with JSONPath expressions and see live results.
The JSONPath Evaluator lets you run JSONPath expressions against your document and see the matched results instantly. Test selectors, wildcards, array slices, and filter expressions to extract exactly the values you need. It is the ideal scratchpad for building and debugging the JSONPath queries you will use in code, tests, or tooling.
Add the document you want to query.
Enter a selector like $.items[*].name to target values.
Results update live, showing every matched value and its path.
Take the extracted values as a JSON array for use elsewhere.
Extract every author from a list of books.
Input
{
"store": {
"book": [
{ "title": "A", "author": "Kay" },
{ "title": "B", "author": "Ng" }
]
}
}Output
// $.store.book[*].author
["Kay", "Ng"]Explore JSON as a collapsible, interactive tree.
Flatten nested JSON into single-level dot-notation key paths.
Pretty-print JSON with configurable indentation and instant validation.
Validate JSON against a JSON Schema using AJV.