> ## 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.

# Project Mindshare

> Social mindshare of a project: its normalized share of attention among all projects and its rank. Each series is one project, keyed by its project id. Tracks attention to protocols and companies rather than tokens.

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

## Endpoints

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

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

## Metrics

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

| Field   | Name  | Type    | Unit | Description                                       |
| ------- | ----- | ------- | ---- | ------------------------------------------------- |
| `score` | Score | float64 |      | The mindshare score for the project.              |
| `rank`  | Rank  | int64   |      | Mindshare rank of the project among all projects. |

## Example

```bash curl theme={null}
curl "https://api.blockworks.com/query/timeseries/project-mindshare/1d/8434fad0-37fa-4332-bfcf-240e4aaf3af4?timeframe=7d&selections=score,rank" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

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