get_sip009_token_info
Retrieve comprehensive SIP-009 NFT details including ownership, metadata URI, and content for specific token IDs on the Stacks blockchain network.
Instructions
Get complete information about a specific SIP-009 NFT including owner, metadata URI, and actual metadata content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contractAddress | Yes | The contract address | |
contractName | Yes | The contract name of the SIP-009 NFT collection | |
network | Yes | The Stacks network | |
tokenId | Yes | The NFT token ID |
Input Schema (JSON Schema)
{
"properties": {
"contractAddress": {
"description": "The contract address",
"type": "string"
},
"contractName": {
"description": "The contract name of the SIP-009 NFT collection",
"type": "string"
},
"network": {
"description": "The Stacks network",
"enum": [
"mainnet",
"testnet",
"devnet"
],
"type": "string"
},
"tokenId": {
"description": "The NFT token ID",
"type": "number"
}
},
"required": [
"contractAddress",
"contractName",
"tokenId",
"network"
],
"type": "object"
}