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

# Vaults

> Onchain vault metrics per protocol, per curator and per chain: assets under management, active vaults, gross yield, net yield paid to depositors and fees.

Each of the three series has its own lookup table.

## Endpoints

| Model                                                             | Access                       | Table                                                               | Timeseries                                                                                                                                        |
| ----------------------------------------------------------------- | ---------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Vault Curators](/api-reference/data-api/vaults/vault-curators)   | Projects\_protocols\_unified | [List rows](/api-reference/data-api/vaults/tabular-vault-curators)  | [Batch](/api-reference/data-api/vaults/timeseries-vault-curators), [One series](/api-reference/data-api/vaults/timeseries-vault-curators-by-id)   |
| [Vault Protocols](/api-reference/data-api/vaults/vault-protocols) | Projects\_protocols\_unified | [List rows](/api-reference/data-api/vaults/tabular-vault-protocols) | [Batch](/api-reference/data-api/vaults/timeseries-vault-protocols), [One series](/api-reference/data-api/vaults/timeseries-vault-protocols-by-id) |
| [Vaults by Chain](/api-reference/data-api/vaults/vaults-by-chain) | Projects\_protocols\_unified | [List rows](/api-reference/data-api/vaults/tabular-vault-chains)    | [Batch](/api-reference/data-api/vaults/timeseries-vaults-by-chain), [One series](/api-reference/data-api/vaults/timeseries-vaults-by-chain-by-id) |

## Example

```bash curl theme={null}
curl "https://api.blockworks.com/query/tabular/vault-curators?pageSize=3&selections=id,slug,name,projectID" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

See [List Vault Curators](/api-reference/data-api/vaults/tabular-vault-curators) for the response and the errors.

## Guides

<CardGroup cols={2}>
  <Card title="Finding an id" icon="key" href="/api-reference/data-api/discovery/finding-an-id">
    Every series key, the table it comes from and the identifiers that resolve to it.
  </Card>

  <Card title="Granularity" icon="clock" href="/getting-started/concepts/granularity">
    Choosing an interval and bounding a time window.
  </Card>

  <Card title="Filtering and pagination" icon="filter" href="/getting-started/filtering-pagination">
    Filter suffixes, sorting, column selection and paging.
  </Card>

  <Card title="Tabular vs timeseries" icon="book" href="/getting-started/concepts/tabular-vs-timeseries">
    The two model kinds, their URL shapes, and when to reach for each.
  </Card>
</CardGroup>
