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

# Projects

> Fundamentals for a project on its primary ecosystem network: protocol revenue, TVL, primary asset market cap, stablecoin supply, DEX volume and mindshare. Each series is one project, keyed by its project id. Only the metrics that apply to a project are populated, so pass selections.

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

## Endpoints

<CardGroup cols={2}>
  <Card title="Batch Get Project timeseries" icon="arrow-right" href="/api-reference/data-api/projects-entities/timeseries-projects">
    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/projects-entities/timeseries-projects-by-id">
    One series over a time window, keyed by its Project ID.
  </Card>
</CardGroup>

## Metrics

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

| Field                                      | Name                                     | Type    | Unit | Description                                                        |
| ------------------------------------------ | ---------------------------------------- | ------- | ---- | ------------------------------------------------------------------ |
| `primary-ecosystem-revenue-usd`            | Primary Ecosystem Revenue USD            | float64 | usd  | Share of fees that goes to the protocol.                           |
| `primary-ecosystem-revenue-usd-rolling-7d` | Primary Ecosystem Revenue USD Rolling 7D | float64 | usd  | Rolling 7D average of share of fees that goes to the protocol.     |
| `primary-ecosystem-tvl-usd`                | Primary Ecosystem TVL USD                | float64 | usd  | Average value of funds locked into the protocol's smart contracts. |
| `primary-asset-circulating-marketcap-usd`  | Primary Asset Circulating Marketcap USD  | float64 | usd  | Circulating marketcap of the primary asset of the project.         |
| `stablecoin-outstanding-supply-usd`        | Stablecoin Outstanding Supply USD        | float64 | usd  | Outstanding supply of the stablecoin of the project.               |
| `dex-volume-usd`                           | DEX Volume USD                           | float64 | usd  | Volume of the project on DEXs.                                     |
| `mindshare-score`                          | Mindshare Score                          | float64 |      | The mindshare score for the project.                               |
| `mindshare-score-rolling-7d`               | Mindshare Score Rolling 7D               | float64 |      | Average rolling 7D mindshare score for the project.                |
| `mindshare-rank`                           | Mindshare Rank                           | int64   |      | Mindshare rank of the project among all projects.                  |

## Example

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

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