---
title: "List vaults"
method: GET
path: "/v3/evk/vaults"
tags: ["Vaults"]
---

# List vaults

`GET /v3/evk/vaults`

Returns a list of vaults.
Notes:
  - `fields` and `sort` are accepted but currently ignored.
  - `minTvl`/`maxTvl` apply to `totalSupplyUsd` where `totalSupplyUsd = (cash + totalBorrows) * price`.

## Query parameters

- `chainId` string
- `fields` string
- `sort` string
- `offset` integer
- `limit` integer
- `asset` string
- `minTvl` number
- `maxTvl` number
- `visibility` string

## Response `200`

Vault list

- object
  - `data` Vault[]
    - `chainId` integer
    - `address` string
    - `vaultType` 'evk' — Vault family for the `/v3/evk/vaults` EVK surface.
    - `name` string
    - `symbol` string
    - `decimals` integer
    - `shares` AssetRef
      - `address` string
      - `symbol` string
      - `decimals` integer
      - `name` string, nullable
    - `asset` AssetRef
      - `address` string
      - `symbol` string
      - `decimals` integer
      - `name` string, nullable
    - `totalAssets` string — Raw underlying asset amount as a bigint string.
    - `totalBorrows` string — Raw borrowed asset amount as a bigint string.
    - `totalSupplyUsd` number — Market USD number for total supplied assets.
    - `totalBorrowsUsd` number — Market USD number for total borrowed assets.
    - `utilization` number — Utilization ratio number, computed from market-normalized totals.
    - `supplyApy` number — Public supply APY as a percent number.
    - `borrowApy` number — Public borrow APY as a percent number.
    - `createdAt` string, date-time
    - `visibility` VaultVisibilitySummary — Platform visibility verdict for discovery surfaces. Warning stays discoverable with a badge; the per-surface booleans carve out lend/borrow discovery individually.
      - `status` 'visible' | 'warning' | 'hidden' | 'pending_review', required
      - `explorableLend` boolean, required
      - `explorableBorrow` boolean, required
      - `decidedBy` 'config-revoked' | 'consistency-revoked' | 'config-suspended' | 'consistency-suspended' | 'config-failed' | 'not-explorable' | 'unassessable' | 'deprecated' | 'unclaimed' | 'verified' | 'awaiting-verification', required — Which resolution rule decided the status. `config-*` codes come from Layer 1 (configuration safety), `consistency-*` codes from Layer 2 (label consistency).
      - `reason` string, nullable, required — Display-appropriate explanation for the decision (deprecation reason, failing check), when one is authored.
  - `meta` PaginationMeta
    - `total` integer — Exact total count when the endpoint provides one.
    - `hasMore` boolean — Indicates whether another page exists beyond the current page.
    - `offset` integer
    - `limit` integer — Echoed page size after endpoint-side clamping.
    - `timestamp` string, date-time, required
    - `chainId` string — Comma-separated chain IDs for multi-chain responses.
    - `degradedProviders` string[] — Live providers whose data is incomplete in this response.

---

[API](https://skmtc.dev/euler/apis/euler-data-api-v3.md) · [All operations](https://skmtc.dev/euler/apis/euler-data-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/euler/euler-data-api-v3/revisions/9e69e7cdb054/schema)
