Privacy-first querying: data stays 100% local
JSONPath evaluation occurs strictly within your browser's local execution context. We never see your data or the queries you run, making it safe for production data inspection.
What is JSONPath?
JSONPath is a query language for JSON, similar to XPath for XML. It allows you to select and extract specific data points from complex or deeply nested JSON structures using a concise syntax.
JSONPath Syntax Reference
| Expression | Description |
|---|---|
| $.store.book[*].author | Extract the authors of all books in the store. |
| $..author | Deep scan: Extract all authors anywhere in the document. |
| $.store.* | Get all child properties of the store object. |
| $.store.book[?(@.price < 10)] | Filter: Get all books that cost less than 10. |
Related JSON Tools
Explore JSON visually with the JSON Viewer tree view before writing queries. Fetch remote API data with the JSON Fetcher and query it directly.