call_nodit_aptos_indexer_api
Access and retrieve blockchain data from Nodit's Aptos Indexer API. Specify the network and request body to fetch normalized, multi-chain data optimized for AI-driven analysis and decisions.
Instructions
Calls a Nodit Aptos Indexer API. Returns the API response. Before making the call, it's recommended to verify the detailed API specifications using the 'get_nodit_aptos_indexer_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 'testnet'. | |
requestBody | Yes | Graphql 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 'testnet'.",
"type": "string"
},
"requestBody": {
"additionalProperties": {},
"description": "Graphql request body matching the API's spec.",
"type": "object"
}
},
"required": [
"network",
"requestBody"
],
"type": "object"
}