get_nft_info
Retrieve detailed metadata for a specific NFT, including collection name, symbol, token URI, and owner, by inputting the contract address and token ID. Supports multiple networks with BSC as default.
Instructions
Get detailed information about a specific NFT (ERC721 token), including collection name, symbol, token URI, and current owner if available.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | No | Network name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet. | bsc |
tokenAddress | Yes | The contract address of the NFT collection (e.g., '0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D' for Bored Ape Yacht Club) | |
tokenId | Yes | The ID of the specific NFT token to query (e.g., '1234') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"network": {
"default": "bsc",
"description": "Network name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet.",
"type": "string"
},
"tokenAddress": {
"description": "The contract address of the NFT collection (e.g., '0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D' for Bored Ape Yacht Club)",
"type": "string"
},
"tokenId": {
"description": "The ID of the specific NFT token to query (e.g., '1234')",
"type": "string"
}
},
"required": [
"tokenAddress",
"tokenId"
],
"type": "object"
}