call_nodit_api
Access and interact with Nodit Blockchain Context APIs by specifying protocol, network, operationId, and request body. Verify API details beforehand using 'get_nodit_api_spec'.
Instructions
This function calls a specific Nodit Blockchain Context API using its operationId. Before making the call, it's recommended to verify the detailed API specifications using the 'get_nodit_api_spec' tool. Please note that using this tool will consume your API quota.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | Yes | Nodit network to call. e.g. 'mainnet' or 'amoy'. | |
operationId | Yes | Nodit API operationId to call. | |
protocol | Yes | Nodit protocol to call. e.g. 'ethereum' or 'polygon'. | |
requestBody | Yes | JSON request body matching the API's spec. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"network": {
"description": "Nodit network to call. e.g. 'mainnet' or 'amoy'.",
"type": "string"
},
"operationId": {
"description": "Nodit API operationId to call.",
"type": "string"
},
"protocol": {
"description": "Nodit protocol to call. e.g. 'ethereum' or 'polygon'.",
"type": "string"
},
"requestBody": {
"additionalProperties": {},
"description": "JSON request body matching the API's spec.",
"type": "object"
}
},
"required": [
"protocol",
"network",
"operationId",
"requestBody"
],
"type": "object"
}