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

# Vault Curators

> Metrics for a vault curator across all chains and vault protocols: assets under management, active vaults, gross yield, net yield paid to depositors and fees, in USD. Each series is one curator, keyed by its slug.

One row per vault curator, the team that designs and manages vault strategies, keyed by its short name: name, project slug and project id where the curator is a tracked project. The id is the series key of the vault-curators timeseries model.

|                  |                                                                                                    |
| ---------------- | -------------------------------------------------------------------------------------------------- |
| Access           | Projects\_protocols\_unified                                                                       |
| Tabular model    | `vault-curators`: primary key `id`, identifiers `slug`                                             |
| Timeseries model | `vault-curators`: intervals `1d`, series key `id` (Curator ID), every series available in one call |

## Endpoints

<CardGroup cols={2}>
  <Card title="List Vault Curators" icon="arrow-right" href="/api-reference/data-api/vaults/tabular-vault-curators">
    One page of rows with per-column filters, sorting and pagination.
  </Card>

  <Card title="Batch Get Vault Curator timeseries" icon="arrow-right" href="/api-reference/data-api/vaults/timeseries-vault-curators">
    Every series in one request, or the named ones.
  </Card>

  <Card title="Get Vault Curator timeseries" icon="arrow-right" href="/api-reference/data-api/vaults/timeseries-vault-curators-by-id">
    One series over a time window, keyed by its Curator ID.
  </Card>
</CardGroup>

## Metrics

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

| Field           | Name              | Type    | Unit | Description                                     |
| --------------- | ----------------- | ------- | ---- | ----------------------------------------------- |
| `aumUSD`        | AUM (USD)         | float64 |      | Total assets under management in vaults in USD. |
| `vaultCount`    | Vault Count       | float64 |      | Number of active vaults.                        |
| `grossYieldUSD` | Gross Yield (USD) | float64 |      | Yield generated by vaults before fees in USD.   |
| `netYieldUSD`   | Net Yield (USD)   | float64 |      | Yield paid to depositors net of fees in USD.    |
| `feesUSD`       | Fees (USD)        | float64 |      | Fees taken by vaults and curators in USD.       |

## Columns

Use the `Field` value in `selections`, `sortBy`, and as the base of a filter parameter (`Field` plus one of its `Filters` suffixes).

| Field       | Type   | Filters                     | Sort    | Description                                                                                               |
| ----------- | ------ | --------------------------- | ------- | --------------------------------------------------------------------------------------------------------- |
| `id`        | string | `Eq`, `IsOneOf`             |         | The series key of the vault-curators timeseries model, the curator's short name (gauntlet). (primary key) |
| `name`      | string | `Eq`, `IsOneOf`, `Contains` | default | The display name of the curator.                                                                          |
| `slug`      | string | `Eq`, `IsOneOf`             | yes     | The curator's project slug, when the curator is also a tracked project; null otherwise. (identifier 1)    |
| `projectID` | string | `Eq`, `IsOneOf`             |         | The identifier of the curator's project record; null when the curator is not a tracked project.           |

## Example

```bash curl theme={null}
curl "https://api.blockworks.com/query/timeseries/vault-curators/1d/9summits?timeframe=7d&selections=aumUSD,vaultCount" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

See [Get Vault Curator timeseries](/api-reference/data-api/vaults/timeseries-vault-curators-by-id) for the response and the errors.
