Skip to content
BEAD

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
  • .name or ['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