GET
/
v0
/
morpho
/
vaults
Python (SDK)
from compass_api_sdk import CompassAPI, models


with CompassAPI(
    api_key_auth="<YOUR_API_KEY_HERE>",
) as compass_api:

    res = compass_api.morpho.vaults(chain=models.MorphoVaultsChain.BASE_MAINNET)

    # Handle response
    print(res)
{
  "vaults": [
    {
      "address": "<string>",
      "symbol": "<string>",
      "name": "<string>",
      "creationBlockNumber": 123,
      "creationTimestamp": 123,
      "creatorAddress": "<string>",
      "whitelisted": true,
      "asset": {
        "symbol": "<string>",
        "address": "<string>",
        "decimals": 123,
        "chain": {
          "id": 123,
          "network": "<string>"
        }
      },
      "chain": {
        "id": 123,
        "network": "<string>"
      },
      "state": {
        "id": "<string>",
        "apy": 123,
        "netApy": 123,
        "totalAssets": 123,
        "totalAssetsUsd": 123,
        "fee": 123,
        "timelock": 123
      }
    }
  ]
}

Authorizations

x-api-key
string
header
required

Your Compass API Key. Get your key here.

Query Parameters

chain
enum<string>
default:base:mainnet
required
Available options:
arbitrum:mainnet,
base:mainnet,
ethereum:mainnet
deposit_token
default:USDC

Token address that will filter vaults by this deposit token. A class representing the token.

This class is used to represent the token in the system. Notice individual endpoints' documentation where per chain tokens are presented.

Available options:
1INCH,
AAVE,
BAL,
cbBTC,
cbETH,
CRV,
crvUSD,
DAI,
ENS,
ETHx,
FRAX,
FXS,
GHO,
KNC,
LDO,
LINK,
LUSD,
MKR,
osETH,
PYUSD,
rETH,
RPL,
rsETH,
sDAI,
SNX,
STG,
sUSDe,
tBTC,
UNI,
USDC,
USDe,
USDS,
USDT,
WBTC,
weETH,
WETH,
wstETH,
ARB,
EURS,
MAI,
USDCe,
ETH,
AERO,
EUR,
VIRTUAL,
ezETH,
CYBER,
wrsETH,
eBTC,
EURC,
eUSDe,
FBTC,
LBTC,
PT-eUSDE-14AUG2025,
PT-eUSDE-29MAY2025,
PT-sUSDE-25SEP2025,
PT-sUSDE-31JUL2025,
PT-USDe-31JUL2025,
RLUSD,
USD₮0,
USDbC,
USDtb

Response

200
application/json

Successful Response

The response is of type object.