# NFT Portfolio Tracking Tools

**Implementation Details**

**Class Names**

| Model Name           | Parameters Class        | Data Class       |
| -------------------- | ----------------------- | ---------------- |
| NFTPortfolioTracking | NFTPortfolioQueryParams | NFTPortfolioData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.nft_portfolio_tracking import (
    NFTPortfolioTracking,
    NFTPortfolioQueryParams,
    NFTPortfolioData,
)
```

***

**Parameters**

| Name               | Type                    | Description                                               | Default       | Optional |
| ------------------ | ----------------------- | --------------------------------------------------------- | ------------- | -------- |
| wallet\_address    | Union\[str, List\[str]] | Address(es) of wallets holding NFTs to track.             | None          | False    |
| include\_valuation | bool                    | Include real-time valuation of NFT assets.                | True          | True     |
| tracking\_scope    | str                     | Scope of tracking (e.g., "Collections," "Single Assets"). | "Collections" | True     |

***

**Data**

| Name              | Type       | Description                                                 |
| ----------------- | ---------- | ----------------------------------------------------------- |
| wallet\_address   | str        | Wallet address holding NFTs.                                |
| portfolio\_value  | float      | Total estimated value of the NFT portfolio (in USD).        |
| top\_collections  | List\[str] | List of the most valuable NFT collections in the portfolio. |
| activity\_summary | dict       | Summary of recent NFT trading or transfers.                 |
| timestamp         | datetime   | Timestamp of the portfolio analysis.                        |

***

**Key Features**

* **Real-Time Portfolio Valuation:** Provides up-to-date valuation of NFT holdings.
* **Collection-Level Insights:** Highlights key collections contributing to portfolio value.
* **Activity Monitoring:** Tracks recent trading and transfer activity within the portfolio.


---

# 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/nft-portfolio-tracking-tools.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.
