JSON Path
Reads values using deterministic dotted and bracketed path expressions.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
data | object | Yes | JSON object or array to read from |
path | text | Yes | Dotted or bracketed path expression |
Outputs
| Name | Type | Description |
|---|---|---|
value | text | Value |
exists | boolean | Exists |
work | array | Work |
Sample request
{
"data": {
"items": [
{
"name": "A"
},
{
"name": "B"
}
]
},
"path": "items[1].name"
}