JSONPath Tester
Query JSON with JSONPath expressions and see the results live.
2 matches
[ "Sayings of the Century", "Moby Dick" ]
🔒 Queries run entirely in your browser.
Supported syntax
$— root.nameor['name']— child key[0],[-1]— array index (negative counts from the end)[0:5],[::2]— array slice with optional step*— wildcard over object values or array items..— recursive descent[?(@.price < 10)]— filter expression (only@, basic comparisons, &&, ||, ===, !==, <, >, <=, >=, +, -, *, /, parentheses)
Multiple results are returned in document order. Filter expressions are evaluated in a sandbox limited to a single @ variable.
You might also like
- JSON Formatter & ValidatorPretty-print, minify, and validate JSON.
- ANSI Escape StripperRemove ANSI color codes and terminal control sequences from CI logs or terminal captures.
- Comment Style ConverterTranslate //, #, --, ;, %, /* */, and <!-- --> comments between languages while preserving indentation.
- Diff CheckerCompare two pieces of text side-by-side with line- and word-level highlighting.