JSONPath Query

Run JSONPath expressions against any JSON document and inspect the matched results instantly. A fast online JSONPath evaluator and tester.

Query JSON with JSONPath

Run JSONPath expressions against any document and see the matched results instantly. A fast, browser-based alternative to jq for extracting and filtering data.

Frequently asked questions

What is JSONPath?+

JSONPath is a query language for JSON, similar to XPath for XML. It lets you select and filter values from a document using expressions like $.items[*].price.

Does it support filters?+

Yes. You can use wildcards, recursive descent ($..), array slices and filter expressions such as $.items[?(@.qty>1)].