Test JSONPath expressions against JSON data. Paste your JSON, write a path, see the result.
JSONPath Syntax
| Expression | Description |
|---|---|
$ | Root object |
$.store | Access property |
$.store.book[0] | First array element |
$.store.book[-1] | Last array element |
$.store.book[*].author | All authors |
$.store.book[0,1] | First two books |