---
title: "Vault cap usage health"
method: GET
path: "/v3/evk/vaults/health/caps"
tags: ["Vaults"]
---

# Vault cap usage health

`GET /v3/evk/vaults/health/caps`

Lists vaults ordered by cap-usage severity (descending).
Cap usage is computed as `max(supplyCapUsage, borrowCapUsage)`, and the
response includes both supply-cap and borrow-cap fields.
- `chainId` is required.
- If `threshold` is omitted, returns all vaults.
- Threshold filter is inclusive (`capUsage >= threshold`).
- `onlyOverThreshold` is accepted for compatibility and currently does not alter filtering.

## Query parameters

- `chainId` integer, required
- `threshold` number
- `onlyOverThreshold` boolean
- `offset` integer
- `limit` integer

## Response `200`

Vault cap health list

- object
  - `data` VaultCapHealthItem[]
    - `chainId` integer — Chain ID
    - `vault` string — Vault address
    - `capUsage` number — Maximum of `supplyCapUsage` and `borrowCapUsage`
    - `supplyCap` string — Supply cap in resolved asset units
    - `supplyCapUsage` number — Current supply-cap usage ratio
    - `borrowCap` string — Borrow cap in resolved asset units
    - `borrowCapUsage` number — Current borrow-cap usage ratio
    - `totalAssets` string — Current total supplied assets
    - `totalBorrows` string — Current total borrowed assets
    - `thresholdExceeded` boolean — Whether `capUsage` meets or exceeds the requested threshold
  - `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.

## Other responses

- `400` — Bad request
- `404` — Not found
- `429` — Rate limited
- `500` — Internal server error

---

[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)
