get_sip009_collection_info
Retrieve SIP-009 NFT collection details including total supply and last token ID by providing contract address, name, and network.
Instructions
Get information about a SIP-009 NFT collection including total supply and last token ID.
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 |
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"
}
},
"required": [
"contractAddress",
"contractName",
"network"
],
"type": "object"
}