JSON Query

Query JSON with JSONPath expressions

Quick queries:

Loading...
Loading...

JSONPath Syntax

$ - Root object

@ - Current object

$.store.book[*] - All books

$.store.book[0] - First book

$.store.book[?(@.price < 10)] - Filter by condition