Alchemy MCP Plugin

get_tokens_for_owner

Retrieve tokens owned by a specific wallet address, optionally filtered by contract addresses, supports pagination for efficient data handling.

Instructions

Get tokens owned by an address

Input Schema

NameRequiredDescriptionDefault
contractAddressesNoList of contract addresses to filter by
ownerYesThe wallet address to get tokens for
pageKeyNoKey for pagination
pageSizeNoNumber of results per page

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 tokens for", "type": "string" }, "pageKey": { "description": "Key for pagination", "type": "string" }, "pageSize": { "description": "Number of results per page", "type": "number" } }, "required": [ "owner" ], "type": "object" }
ID: p99w73336q