JSON Path Tester
Test JSONPath expressions against a JSON sample.
Result
"London"
Simplified JSONPath. Supports root ($), dot navigation (.foo), and bracket indexing ([0]). Doesn't support filter expressions ([?(@.x)]) or wildcards (*). For complex queries, use jq or a full JSONPath library.
About
Paste JSON. Type a path like $.address.city or $.tags[0]. The tool extracts the matched value. Supports dot navigation and array indexing. Doesn't support filter expressions or wildcards.
How to use
- Paste JSON.
- Type a path.
FAQ
Does this support full JSONPath?+
No - only the basic subset. For filter expressions ([?(@.x > 3)]) and wildcards (*), use jq or a real JSONPath library.