JSONPath Tester

Test JSONPath queries against JSON data with real-time results, syntax highlighting, and detailed error messages.

Ready to query
Enter a JSONPath expression
Execute a query to see results
0 results

JSONPath Reference

📍 Basic Expressions

$ - Root object
@ - Current object
. - Child operator
.. - Recursive descent

🔢 Array Operations

[0] - First element
[-1] - Last element
[1,2,3] - Multiple elements
[1:3] - Slice (1-2)
[*] - All elements

🔍 Filters

[?(@.price > 10)]
[?(@.category == 'book')]
[?(@.title)] - Exists
[?(@.author =~ /John/)]