This enhanced JSONPath Evaluator:
Input JSON:
{
"store": {
"book": [
{ "title": "A", "price": 5 },
{ "title": "B", "price": 15 }
]
}
}Expression: $.store.book[?(@.price < 10)]
JSON Array:
[
{
"title": "A",
"price": 5
}
]Plain Text:
{'title': 'A', 'price': 5}Paths & Values:
store.book[0] → {'title': 'A', 'price': 5}CSV:
path,value
store.book[0],{"title":"A","price":5}| Match Count | 1 |
|---|---|
| Max Path Depth | 3 |
`$` → root | `.` → child | `..` → recursive
`*` → wildcard | `[n]` → index | `[?(expr)]` → filter– Explore API payloads interactively.
– Debug complex nested data.
– Automate data extraction in scripts or tests.