# Polygon Wallet Token Holdings

**Use case:** 

Get any Polygon wallet's token holdings: symbol, name, balance, price, USD value, market cap. Live portfolio data.

## Input

```json
{
  "outputType": "tokenHoldings",
  "addresses": [
    "vitalik.eth"
  ],
  "chain": "polygon",
  "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"
  },
  "walletAddress": {
    "label": "Wallet",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Token",
    "format": "text"
  },
  "balance": {
    "label": "Balance",
    "format": "number"
  },
  "priceUsd": {
    "label": "Price (USD)",
    "format": "number"
  },
  "valueUsd": {
    "label": "Value (USD)",
    "format": "number"
  },
  "marketCapUsd": {
    "label": "Market cap",
    "format": "number"
  },
  "holdersCount": {
    "label": "Holders",
    "format": "number"
  },
  "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.