Free Developer Tool
JSONPath Tester
Evaluate JSONPath queries and instantly inspect matching results.
Examples:
$.store.book[*].author
$.store.book[0]
$.store.book[*].price
$..price
$.store.book[?(@.price < 10)]
$.store.*
$.store.book[*].author
$.store.book[0]
$.store.book[*].price
$..price
$.store.book[?(@.price < 10)]
$.store.*
What is JSONPath Tester?
JSONPath allows you to query and extract values from complex JSON structures.
How to use
- Paste JSON data.
- Enter a JSONPath query.
- View matching results.
Features
- JSONPath evaluation
- Result highlighting
- Nested data support
- Fast testing
- Developer friendly
Example
Input
{
"users": [
{ "name": "John" },
{ "name": "Jane" }
]
}Output
$.users[*].name ["John","Jane"]
FAQ
What is JSONPath?
JSONPath is a query language for extracting data from JSON documents.
Can I test nested paths?
Yes. Complex nested queries are supported.
Is the tool free?
Yes. Completely free to use.
Missing a feature?
If this tool doesn't cover your use case or is missing functionality, please let me know through the Contact page.
New improvements and features are added based on user feedback.