# Automated Airdrop Eligibility Scans

**Implementation Details**

**Class Names**

| Model Name             | Parameters Class              | Data Class             |
| ---------------------- | ----------------------------- | ---------------------- |
| AirdropEligibilityScan | AirdropEligibilityQueryParams | AirdropEligibilityData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.airdrop_eligibility_scan import (
    AirdropEligibilityScan,
    AirdropEligibilityQueryParams,
    AirdropEligibilityData,
)
```

***

**Parameters**

| Name                    | Type                    | Description                                                                   | Default | Optional |
| ----------------------- | ----------------------- | ----------------------------------------------------------------------------- | ------- | -------- |
| wallet\_address         | Union\[str, List\[str]] | Address(es) to scan for airdrop eligibility.                                  | None    | False    |
| include\_pending\_drops | bool                    | Include pending airdrops yet to be claimed.                                   | True    | True     |
| eligibility\_criteria   | str                     | Specific criteria to filter airdrops (e.g., "Token Holder," "Early Adopter"). | None    | True     |

***

**Data**

| Name                | Type       | Description                                        |
| ------------------- | ---------- | -------------------------------------------------- |
| wallet\_address     | str        | Wallet address analyzed for airdrop eligibility.   |
| eligible\_airdrops  | List\[str] | List of airdrops the wallet is eligible for.       |
| pending\_claims     | List\[str] | Details of pending claims for the wallet.          |
| total\_claim\_value | float      | Estimated value of all eligible airdrops (in USD). |
| timestamp           | datetime   | Timestamp of the eligibility scan.                 |

***

**Key Features**

* **Eligibility Scanning:** Identifies active and upcoming airdrops for a wallet.
* **Pending Claim Management:** Tracks unclaimed airdrops and provides claim instructions.
* **Value Estimation:** Projects the potential financial gain from eligible airdrops.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/monitoring-and-tracking/automated-airdrop-eligibility-scans.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
