Alchemy MCP Plugin

get_nfts_for_owner

Get NFTs owned by a specific wallet address

Input Schema

NameRequiredDescriptionDefault
contractAddressesNoList of contract addresses to filter by
ownerYesThe wallet address to get NFTs for
pageKeyNoKey for pagination
pageSizeNoNumber of NFTs to return in one page (max: 100)
withMetadataNoWhether to include NFT metadata

Input Schema (JSON Schema)

{ "properties": { "contractAddresses": { "description": "List of contract addresses to filter by", "items": { "type": "string" }, "type": "array" }, "owner": { "description": "The wallet address to get NFTs for", "type": "string" }, "pageKey": { "description": "Key for pagination", "type": "string" }, "pageSize": { "description": "Number of NFTs to return in one page (max: 100)", "type": "number" }, "withMetadata": { "description": "Whether to include NFT metadata", "type": "boolean" } }, "required": [ "owner" ], "type": "object" }