JSONPath Query Tool

JSONPath Quick Reference

  • $ - Root object/element
  • @ - Current object/element
  • . - Child operator
  • .. - Recursive descent
  • * - Wildcard for all elements
  • [n] - Array index
  • [start:end:step] - Array slice
  • ['key'] - Child property
  • [?expr] - Filter expression
  • length - Size of array/string
  • ==, != - Equality operators
  • >, >=, <, <= - Comparison operators

Document

Evaluation Results