get_nft_balance
Retrieve the NFT balance of a wallet address for a specific NFT collection. Include token IDs if needed to track ownership within the EDUCHAIN ecosystem.
Instructions
Get the NFT balance of a wallet address for a specific NFT collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fetchTokenIds | No | Whether to fetch token IDs (default: true) | |
nftAddress | Yes | NFT contract address | |
walletAddress | Yes | Wallet address to check |
Input Schema (JSON Schema)
{
"properties": {
"fetchTokenIds": {
"description": "Whether to fetch token IDs (default: true)",
"type": "boolean"
},
"nftAddress": {
"description": "NFT contract address",
"type": "string"
},
"walletAddress": {
"description": "Wallet address to check",
"type": "string"
}
},
"required": [
"nftAddress",
"walletAddress"
],
"type": "object"
}