What JSON Path syntax is supported?
This tester supports common dot notation, bracket notation, array indexes, and wildcards such as $.users[*].name.
Does it support filters?
This lightweight tester focuses on common lookup paths and does not support advanced filter expressions.
Is my JSON uploaded?
No. JSON parsing and path testing happen locally in your browser.
Why does my path return no matches?
Check property names, array indexes, and whether the path starts from the correct root object. JSON paths are case-sensitive.
How should I debug a long JSON path?
Start with the root, then test each level separately. For example, test $.orders, then $.orders[0], then $.orders[0].items before adding the final field.
What should I do when field names contain dots?
Use bracket notation with quotes, such as $["user.name"]. Dot notation treats a dot as a path separator instead of part of the field name.