getNFTMetadata
Retrieve metadata for any NFT by providing its contract address, token ID, and chain ID. Ideal for Ethereum-based automation and crypto research.
Instructions
Gets metadata for an NFT token by contract address and token ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | The chain ID where the NFT exists | |
contractAddress | Yes | The NFT contract address | |
tokenId | Yes | The token ID of the NFT |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"description": "The chain ID where the NFT exists",
"type": "number"
},
"contractAddress": {
"description": "The NFT contract address",
"type": "string"
},
"tokenId": {
"description": "The token ID of the NFT",
"type": "string"
}
},
"required": [
"contractAddress",
"tokenId",
"chainId"
],
"type": "object"
}