Alchemy MCP Plugin

get_owners_for_nft

Retrieve owner details of a specific NFT by providing its contract address and token ID. Supports pagination to manage large result sets efficiently.

Instructions

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" }
ID: p99w73336q