Skip to main content
DevTools24

JSONPath Tester

Test JSONPath expressions against your JSON data. Query, filter, and extract data with live results.

No results

JSONPath - Technical Details

JSONPath is a query language for JSON, similar to XPath for XML. It allows you to select and extract data from JSON documents using path expressions.

Command-line Alternative

// Common JSONPath expressions\n$.store.book[*].author   // All authors\n$..price                  // All prices (recursive)\n$.store.book[0]           // First book\n$.store.book[-1:]         // Last book\n$.store.book[?(@.price<10)] // Filter by condition

Reference

View Official Specification