Alchemy MCP Plugin

get_transfers_for_contract

Get transfers for an NFT contract

Input Schema

NameRequiredDescriptionDefault
contractAddressYesThe contract address of the NFT collection
fromBlockNoStarting block number for the query
orderNoOrder of results (ascending or descending)
pageKeyNoKey for pagination
toBlockNoEnding block number for the query
tokenTypeNoType of token (ERC721 or ERC1155)

Input Schema (JSON Schema)

{ "properties": { "contractAddress": { "description": "The contract address of the NFT collection", "type": "string" }, "fromBlock": { "description": "Starting block number for the query", "type": "number" }, "order": { "description": "Order of results (ascending or descending)", "enum": [ "asc", "desc" ], "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": [ "contractAddress" ], "type": "object" }