JSON Path Evaluator
JSONPath Evaluation Tool
Evaluate JSONPath expressions against JSON data.
Uses dot notation and bracket syntax.
Quick Examples
JSONPath Syntax
| Expression | Description |
|---|---|
$ | Root object |
$.key | Child property |
$.a.b | Nested property |
$.arr[0] | Array element by index |
$.arr[*] | All array elements |
$.arr[-1] | Last array element |
$.arr[0:3] | Array slice (index 0 to 2) |
About JSONPath
JSONPath is a query language for JSON, similar to XPath for XML.
It allows you to extract and manipulate data from JSON structures using a simple syntax.