get_nft_instance_info
Retrieve detailed information about a specific NFT instance using its token address and instance ID for blockchain analysis.
Instructions
Get NFT instance information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | The token address | |
| instance_id | Yes | The instance ID |
Implementation Reference
- index.js:754-756 (handler)The switch case handler that executes the get_nft_instance_info tool by extracting parameters and making an API request to the ChainFetch endpoint for the specific NFT token instance.case 'get_nft_instance_info': const { token: nftToken, instance_id } = args; return await this.makeRequest(`/api/v1/ethereum/token-instances/${nftToken}/${instance_id}`, 'GET', {}, null, token);
- index.js:488-505 (registration)Tool registration in the listTools response, defining the name, description, and input schema for get_nft_instance_info.{ name: 'get_nft_instance_info', description: 'Get NFT instance information', inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'The token address', }, instance_id: { type: 'string', description: 'The instance ID', }, }, required: ['token', 'instance_id'], }, },
- index.js:491-504 (schema)Input schema definition for the get_nft_instance_info tool, specifying required parameters token and instance_id.inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'The token address', }, instance_id: { type: 'string', description: 'The instance ID', }, }, required: ['token', 'instance_id'], },