JSONPath Tester
Test JSONPath expressions against JSON data. Debug queries and extract specific values from complex JSON structures.
Quick Examples
🔒 Privacy First: All JSON processing happens directly in your browser. Your data is never sent to any
server, ensuring complete privacy.
About JSONPath Tester
This free online tool lets you test JSONPath expressions against JSON data. JSONPath is a query language for JSON, similar to XPath for XML. It allows you to select and extract data from JSON documents.
JSONPath Syntax
$- Root element.- Child operator..- Recursive descent*- Wildcard (all elements)[n]- Array index (0-based)[-n]- Array index from end[start:end]- Array slice[*]- All array elements['key']- Object property
Examples
$.store.book[*].author- All book authors$..author- All authors recursively$.store.book[0].title- First book title$.store.book[-1]- Last book in array$.store.book[0:2]- First two books