# ERC-20 Token Transfer History by Wallet

**Use case:** 

Get ERC-20 token transfers for any wallet: date, token symbol, amount, USD value, from/to, tx hash. Export to CSV.

## Input

```json
{
  "outputType": "tokenTransfers",
  "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"
  },
  "timestamp": {
    "label": "Time",
    "format": "text"
  },
  "txHash": {
    "label": "Tx",
    "format": "text"
  },
  "direction": {
    "label": "Dir",
    "format": "text"
  },
  "tokenSymbol": {
    "label": "Token",
    "format": "text"
  },
  "tokenType": {
    "label": "Type",
    "format": "text"
  },
  "amount": {
    "label": "Amount",
    "format": "number"
  },
  "valueUsd": {
    "label": "Value (USD)",
    "format": "number"
  },
  "from": {
    "label": "From",
    "format": "text"
  },
  "to": {
    "label": "To",
    "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.