Skip to main content
DevTools24

Testeur JSONPath

Testez les expressions JSONPath sur vos données JSON. Interrogez, filtrez et extrayez des données avec des résultats en direct.

No results

JSONPath - Détails techniques

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.

Alternative en ligne de commande

// 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

Référence

Voir la spécification officielle