# Wallet Airdrop Readiness Score Report

**Use case:** 

Analyze wallet age, transaction activity, and token diversity. Get a 0-100 readiness score for potential airdrop eligibility.

## Input

```json
{
  "wallets": [
    "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "0x28C6c06298d514Db089934071355E5743bf21d60"
  ],
  "chainId": 1,
  "maxConcurrency": 2
}
```

## Output

```json
{
  "wallet": {
    "label": "Wallet",
    "format": "text"
  },
  "chainId": {
    "label": "Chain",
    "format": "number"
  },
  "walletAgeDays": {
    "label": "Age (days)",
    "format": "number"
  },
  "txCount": {
    "label": "Recent tx count",
    "format": "number"
  },
  "uniqueContracts": {
    "label": "Unique counterparties",
    "format": "number"
  },
  "nativeBalance": {
    "label": "Balance (native token)",
    "format": "number"
  },
  "nativeSymbol": {
    "label": "Native token",
    "format": "text"
  },
  "readinessScore": {
    "label": "Readiness score",
    "format": "number"
  },
  "disclaimer": {
    "label": "Disclaimer",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Wallet Airdrop Readiness Score](https://apify.com/zinin/wallet-airdrop-profile) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/wallet-airdrop-profile) to learn more, explore other use cases, and run it yourself.