Alchemy MCP Plugin

get_transfers_for_owner

Get NFT transfers for an owner

Input Schema

NameRequiredDescriptionDefault
contractAddressesNoList of contract addresses to filter by
fromBlockNoStarting block number for the query
orderNoOrder of results (ascending or descending)
ownerYesThe wallet address to get transfers for
pageKeyNoKey for pagination
toBlockNoEnding block number for the query
tokenTypeNoType of token (ERC721 or ERC1155)

Input Schema (JSON Schema)

{ "properties": { "contractAddresses": { "description": "List of contract addresses to filter by", "items": { "type": "string" }, "type": "array" }, "fromBlock": { "description": "Starting block number for the query", "type": "number" }, "order": { "description": "Order of results (ascending or descending)", "enum": [ "asc", "desc" ], "type": "string" }, "owner": { "description": "The wallet address to get transfers for", "type": "string" }, "pageKey": { "description": "Key for pagination", "type": "string" }, "toBlock": { "description": "Ending block number for the query", "type": "number" }, "tokenType": { "description": "Type of token (ERC721 or ERC1155)", "enum": [ "ERC721", "ERC1155" ], "type": "string" } }, "required": [ "owner" ], "type": "object" }