# Synthetic Asset Usage Analytics

**Implementation Details**

**Class Names**

| Model Name                   | Parameters Class          | Data Class              |
| ---------------------------- | ------------------------- | ----------------------- |
| SyntheticAssetUsageAnalytics | SyntheticAssetQueryParams | SyntheticAssetUsageData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.synthetic_asset_usage_analytics import (
    SyntheticAssetUsageAnalytics,
    SyntheticAssetQueryParams,
    SyntheticAssetUsageData,
)
```

***

**Parameters**

| Name          | Type                    | Description                                                                | Default              | Optional |
| ------------- | ----------------------- | -------------------------------------------------------------------------- | -------------------- | -------- |
| asset\_symbol | Union\[str, List\[str]] | Synthetic asset(s) to monitor (e.g., sETH, sUSD).                          | None                 | False    |
| usage\_metric | str                     | Specific metrics to track (e.g., "Transaction Volume," "Liquidity Depth"). | "Transaction Volume" | True     |
| time\_window  | int                     | Time window (in days) for tracking synthetic asset usage.                  | 7                    | True     |

***

**Data**

| Name             | Type         | Description                                               |
| ---------------- | ------------ | --------------------------------------------------------- |
| asset\_symbol    | str          | Symbol of the synthetic asset being analyzed.             |
| total\_volume    | float        | Total transaction volume of the synthetic asset (in USD). |
| liquidity\_depth | float        | Total liquidity available for the asset.                  |
| usage\_trends    | List\[float] | Historical usage trends over the specified time period.   |
| timestamp        | datetime     | Timestamp of the analysis.                                |

***

**Key Features**

* **Volume Analysis:** Tracks transaction volume for synthetic assets across platforms.
* **Liquidity Insights:** Highlights the availability of liquidity for synthetic asset trading.
* **Trend Monitoring:** Visualizes usage patterns over time to detect adoption trends.


---

# 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/insights-and-predictive-analytics/synthetic-asset-usage-analytics.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.
