# ERC-20 Token Contract Info Lookup

**Use case:** 

Look up any ERC-20 token by contract: symbol, name, price, market cap, total supply, holder count. Public data.

## Input

```json
{
  "outputType": "token",
  "addresses": [
    "vitalik.eth"
  ],
  "chain": "ethereum",
  "tokenAddresses": [
    "0xdac17f958d2ee523a2206206994597c13d831ec7"
  ],
  "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"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Token",
    "format": "text"
  },
  "tokenType": {
    "label": "Type",
    "format": "text"
  },
  "tokenAddress": {
    "label": "Address",
    "format": "text"
  },
  "priceUsd": {
    "label": "Price (USD)",
    "format": "number"
  },
  "marketCapUsd": {
    "label": "Market cap",
    "format": "number"
  },
  "totalSupply": {
    "label": "Supply",
    "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.