×
About JSON Path Explorer
JSON Path Explorer is a lightweight tool for testing and exploring JSONPath expressions. It uses the jsonpath-js library to evaluate expressions according to RFC 9535 standards.
Features
- Test JSONPath expressions against your JSON data
- View both values and precise paths for each match
- Syntax highlighting
- Share your queries via URL
- Dark mode support
- Copy results to clipboard
About JSONPath-JS
This tool implements the JSONPath specification according to RFC 9535,
allowing precise path traversal and filtering of JSON data structures.
// Example usage
const query = new JSONPathJS("$.store.book[*].author");
const result = query.find(jsonData); // Values only
const paths = query.paths(jsonData); // Values with paths
This is an open-source project created for educational purposes.