JSONPath Evaluator
Test JSONPath expressions online: .keys, [0], wildcards .* and [*]. Live match list against your document.
JSONPath evaluator
Supports .key, [0], .*, [*]. Try $.store.books[*].price.
Matches (2)
[ "A", "B" ]
How to use
- Paste the JSON document.
- Type the path ($.key, [0], .* wildcards).
- Read match list; copy the value.
FAQ
Full JSONPath?
Core subset: child keys, indexes, wildcards. No filters [?()] or slices.
Single vs many?
One match returns the value; many return an array.