Query & Filter

JSONPath Tester

Query, filter, and extract data from complex JSON structures using standard JSONPath syntax.

$
History:
Input JSON
Evaluation Result
Quick Reference
  • Root node $
  • Current node @
  • Child operator . or []
  • Recursive descent ..
  • Wildcard *
  • Array slice [start:end]
  • Filter expression [?(expr)]
  • Example $.store.book[?(@.price < 10)]