> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blockworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Asset Mindshare

> Social mindshare of an asset: its share of attention across tracked assets, the underlying score, rank, rolling averages and unique authors. Each series is one asset, keyed by its asset id.

|                  |                                                                                                                           |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------- |
| Access           | Social\_mindshare\_unified                                                                                                |
| Timeseries model | `asset-mindshare`: intervals `1h`, `6h`, `1d`, series key `asset-id` (Asset ID), series must be named (up to 20 per call) |

## Endpoints

<CardGroup cols={2}>
  <Card title="Batch Get Asset timeseries" icon="arrow-right" href="/api-reference/data-api/social-mindshare/timeseries-asset-mindshare">
    Up to 20 series in one request, named by Asset ID in `series`.
  </Card>

  <Card title="Get Asset timeseries" icon="arrow-right" href="/api-reference/data-api/social-mindshare/timeseries-asset-mindshare-by-id">
    One series over a time window, keyed by its Asset ID.
  </Card>
</CardGroup>

## Metrics

7 metrics. Use the `Field` value in `selections`; every point starts with the timestamp and continues in this order.

| Field                        | Name                       | Type    | Unit    | Description                                                                     |
| ---------------------------- | -------------------------- | ------- | ------- | ------------------------------------------------------------------------------- |
| `percentage`                 | Percentage                 | float64 |         | The percentage of the total mindshare score for this asset on a given interval. |
| `score`                      | Score                      | float64 |         | The total mindshare score for the asset on a given interval.                    |
| `rank`                       | Rank                       | int64   |         | Mindshare rank of the asset among all assets.                                   |
| `percentage-rolling-7d`      | Percentage Rolling 7D      | float64 |         | The sum of the normalized mindshare score for this asset over the last 7 days.  |
| `percentage-rolling-avg-7d`  | Percentage Rolling Avg 7D  | float64 | percent | The average of the mindshare percentage for this asset over the last 7 days.    |
| `percentage-rolling-avg-24h` | Percentage Rolling Avg 24H | float64 | percent | The average of the mindshare percentage for this asset over the last 24 hours.  |
| `unique-authors-mentioning`  | Unique Authors Mentioning  | int64   |         | The total number of unique authors mentioning this asset on a given interval.   |

## Example

```bash curl theme={null}
curl "https://api.blockworks.com/query/timeseries/asset-mindshare/1d/1e31218a-e44e-4285-820c-8282ee222035?timeframe=7d&selections=percentage,score" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

See [Get Asset timeseries](/api-reference/data-api/social-mindshare/timeseries-asset-mindshare-by-id) for the response and the errors.
