call_endpoint
Execute API calls to Grove's blockchain endpoints across 70+ networks including Ethereum, Solana, and Cosmos. Send requests with path parameters, query strings, and request bodies for accessing blockchain data.
Instructions
Call a Grove endpoint for Pocket Network with optional parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Request body for POST/PUT/PATCH requests | |
endpointId | Yes | The ID of the endpoint to call | |
pathParams | No | Path parameters (e.g., {id: "123"} for /users/:id) | |
queryParams | No | Query parameters to append to the URL |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Request body for POST/PUT/PATCH requests",
"type": "object"
},
"endpointId": {
"description": "The ID of the endpoint to call",
"type": "string"
},
"pathParams": {
"description": "Path parameters (e.g., {id: \"123\"} for /users/:id)",
"type": "object"
},
"queryParams": {
"description": "Query parameters to append to the URL",
"type": "object"
}
},
"required": [
"endpointId"
],
"type": "object"
}