JSON Path Tester Online
Write and test JSONPath expressions against complex JSON documents. Extract specific keys, array elements, and nested object fields effortlessly.
JSON Path Tester Online
Test and extract values from JSON structures using JSONPath queries ($ expression syntax).
Layout:Editor Height:
In: 12 lines (526 chars)
Input JSON12 lines
Evaluation Output
JSONPath Syntax Guide & Examples
$
Refers to the root object or array.
$.store.books[*]
Selects all items inside the `books` array.
$.store.books[0].author
Selects author property of the first book.
$.store.books[*].title
Extracts array of all book titles.