nft_for_address
Retrieve all NFTs (ERC721 and ERC1155) held by a wallet address on any supported blockchain, with options to filter spam and control metadata fetching for faster or more complete results.
Instructions
Commonly used to render the NFTs (including ERC721 and ERC1155) held by an address. Required: chainName (blockchain network name), walletAddress (wallet address or ENS/domain). Optional: noSpam (filter spam, default true), noNftAssetMetadata (exclude metadata for faster response, default true), withUncached (fetch uncached metadata, may be slower, default false). Returns complete details of NFTs in the wallet including metadata.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chainName | Yes | The blockchain network to query (e.g., 'eth-mainnet', 'matic-mainnet', 'bsc-mainnet'). | |
| walletAddress | Yes | The wallet address to get NFTs for. Can be a wallet address or ENS/domain name. | |
| noSpam | No | Filter out spam/scam NFTs from results. Default is true. | |
| noNftAssetMetadata | No | Skip fetching NFT asset metadata for faster response. Default is true. | |
| withUncached | No | Fetch uncached metadata directly from source (may be slower but more up-to-date). Default is false. |