JSON Path Tester
Paste JSON, type a path like a.b[0].c, and see the extracted value instantly. Click any node in the tree to write its path for you. Wildcards with [*] supported.
Tree (click a key to set the path)
Result
Path syntax: dot notation for object keys (
user.name), brackets for array indexes (items[2]), quoted brackets for keys with special characters (["weird key"]), and [*] or .* as a wildcard that fans out over every element or key and returns an array of matches. A leading $ is optional. This is the pragmatic dot/bracket style used in most code, not the full JSONPath spec (no filters or recursive descent). Everything runs locally, nothing is uploaded.