Path:

JSON Input

0 chars

Results

0 chars

How to Use the JSON Path Finder

Paste JSON in the left panel and enter a JSONPath expression in the path field. Results update in real time. Use the quick-insert buttons for common expressions.

JSONPath Syntax

  • $ — Root object
  • $.key — Child property
  • $[0] — Array index
  • $[*] — All array elements
  • $..* — Recursive descent (all values)
  • $[?(@.price < 10)] — Filter expression

FAQ

What is JSONPath?

JSONPath is a query language for JSON, similar to XPath for XML. It lets you extract specific values from JSON data using expressions like $.store.books[*].title.

Which JSONPath spec is used?

This tool uses the Goessner JSONPath specification via the jsonpath-plus library.

Is my data safe?

Yes. All querying happens in your browser. No data is sent to any server.

Related Articles