# NFT Holdings by Wallet Address

**Use case:** 

List every NFT held by any Ethereum wallet: collection name, token ID, item name, image URL, contract type. Public data.

## Input

```json
{
  "outputType": "nftHoldings",
  "addresses": [
    "vitalik.eth"
  ],
  "chain": "ethereum",
  "includeTokenHoldings": true,
  "includeNftHoldings": true,
  "direction": "all",
  "maxResultsPerAddress": 100,
  "maxResults": 1000,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "chainName": {
    "label": "Chain",
    "format": "text"
  },
  "walletAddress": {
    "label": "Wallet",
    "format": "text"
  },
  "collectionName": {
    "label": "Collection",
    "format": "text"
  },
  "tokenType": {
    "label": "Type",
    "format": "text"
  },
  "tokenId": {
    "label": "Token ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "image": {
    "label": "Image",
    "format": "link"
  },
  "explorerUrl": {
    "label": "Explorer",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Crypto Wallet Scraper - Balances, Tokens, NFTs & Transactions](https://apify.com/scrapesage/crypto-wallet-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/crypto-wallet-scraper) to learn more, explore other use cases, and run it yourself.