# Ethereum Wallet Balance Checker

**Use case:** 

Check any Ethereum wallet balance: ENS name, ETH held, USD value, portfolio total, token & NFT counts. Public on-chain data.

## Input

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

## Output

```json
{
  "chainName": {
    "label": "Chain",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "ensName": {
    "label": "ENS",
    "format": "text"
  },
  "nativeSymbol": {
    "label": "Coin",
    "format": "text"
  },
  "nativeBalance": {
    "label": "Balance",
    "format": "number"
  },
  "nativeBalanceUsd": {
    "label": "Balance (USD)",
    "format": "number"
  },
  "portfolioUsd": {
    "label": "Portfolio (USD)",
    "format": "number"
  },
  "tokenCount": {
    "label": "# Tokens",
    "format": "number"
  },
  "nftCount": {
    "label": "# NFTs",
    "format": "number"
  },
  "transactionsCount": {
    "label": "# Txns",
    "format": "number"
  },
  "topHoldingSymbol": {
    "label": "Top holding",
    "format": "text"
  },
  "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.