Alchemy MCP Plugin

get_owners_for_nft

Get owners of a specific NFT

Input Schema

NameRequiredDescriptionDefault
contractAddressYesThe contract address of the NFT
pageKeyNoKey for pagination
pageSizeNoNumber of results per page
tokenIdYesThe token ID of the NFT

Input Schema (JSON Schema)

{ "properties": { "contractAddress": { "description": "The contract address of the NFT", "type": "string" }, "pageKey": { "description": "Key for pagination", "type": "string" }, "pageSize": { "description": "Number of results per page", "type": "number" }, "tokenId": { "description": "The token ID of the NFT", "type": "string" } }, "required": [ "contractAddress", "tokenId" ], "type": "object" }