๐Ÿ”Ž JSON Path Query

Use path expressions to extract specific data from JSON documents.

Path Expression
Examples: $.name ยท $.users[0] ยท $.items[*].price ยท $.address ยท $..email
Input JSON
Query Result

JSON Path Syntax

ExpressionDescriptionExample
$Root object$ โ†’ entire document
.keyChild property$.name โ†’ value of "name"
[0]Array index$.items[0] โ†’ first item
[*]All array items$.items[*].name โ†’ all names
..Recursive descent$..email โ†’ all emails at any depth

Have questions? Check our FAQ page.

Related Tools