JSON Path Finder

Click any value to get its JSONPath expression.

Ad
JSONPath
$
Copied!
Ad

Frequently Asked Questions

What JSONPath syntax is supported? +
This tool supports standard JSONPath syntax: dot notation ($.store.book), bracket notation ($['store']['book']), array indices ($[0]), and wildcards ($..book). The query evaluator handles most common JSONPath expressions.
What is the difference between dot notation and bracket notation? +
Dot notation ($.store.name) is shorter but only works with simple property names. Bracket notation ($['store']['name']) works with any property name, including those with spaces or special characters.
How do I query nested arrays? +
Use array index syntax like $.data[0].name to access specific indices, or $.data[*].name to get that property from every array element. The recursive descent operator ($..name) finds the key at any depth.
Ad