query
Extract and manipulate JSON data by specifying a URL and JSONPath expression, enabling precise querying, filtering, sorting, and transformation of JSON content.
Instructions
Query JSON data using JSONPath syntax
Input Schema
Name | Required | Description | Default |
---|---|---|---|
jsonPath | Yes | JSONPath expression (e.g. $.store.book[*].author) | |
url | Yes | URL of the JSON data source |
Input Schema (JSON Schema)
{
"properties": {
"jsonPath": {
"description": "JSONPath expression (e.g. $.store.book[*].author)",
"type": "string"
},
"url": {
"description": "URL of the JSON data source",
"type": "string"
}
},
"required": [
"url",
"jsonPath"
],
"type": "object"
}