AES Encryption Explained: How It Works and Why It Matters
Jun 23, 2026
Test JSONPath expressions against JSON data with live results.
Example paths
JSONPath is a query language for JSON, similar to XPath for XML. It allows you to navigate and extract data from JSON documents using path expressions.
| Operator | Description |
|---|---|
| $ | Root object |
| .key | Child by key |
| ['key'] | Child by key (bracket notation) |
| [n] | Array index (0-based) |
| [*] | Wildcard (all children) |
| .. | Deep scan (recursive descent) |
JSONPath is inspired by XPath and uses a similar syntax with $ as root and . for child access. JMESPath is a separate specification used by AWS CLI with a different syntax.
No. All processing happens entirely in your browser using JavaScript. Your JSON data never leaves your device.
This tool supports basic JSONPath syntax including dot notation, bracket notation, wildcards, array indexing, and deep scan. Full filter expressions [?(@.price>10)] are shown as examples but the implementation covers the most commonly used operators.
Blog
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026