List ERC-4626 yield vaults across DeFi venues.
Returns vault data including APY, TVL, and underlying asset information. Use this endpoint to discover yield opportunities, compare rates across venues, or build vault selection interfaces.
Supports dozens of vaults and markets like Morpho and other ERC-4626 compatible yield venues.
To deposit into a vault, use the manage endpoint with venue_type=VAULTS.
The field to order the results by.
The direction to order the results by.
asc, desc The offset of the first item to return.
The number of items to return.
x <= 1000Optional chain filter. If not provided, returns vaults for all chains. The chain to use.
base, ethereum, arbitrum Filter vaults by underlying asset symbol (e.g., 'USDC', 'WETH').
Minimum TVL in USD. Vaults with TVL below this value will be excluded.
Successful Response
Response model for a paginated list of ERC-4626 vaults.
A list of vault information objects.
[
{
"apy_30d": "5.12",
"apy_7d": "5.25",
"apy_90d": "4.98",
"asset": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"asset_name": "USD Coin",
"asset_symbol": "USDC",
"chain": "ethereum",
"name": "Steakhouse USDC",
"owner": "0x1234567890123456789012345678901234567890",
"symbol": "steakUSDC",
"tvl_usd": "12500000.00",
"vault_address": "0xBEEF01735c132Ada46AA9aA4c54623cAA92A64CB"
},
{
"apy_30d": "3.28",
"apy_7d": "3.45",
"apy_90d": "3.15",
"asset": "0x4200000000000000000000000000000000000006",
"asset_name": "Wrapped Ether",
"asset_symbol": "WETH",
"chain": "base",
"name": "Morpho Blue WETH",
"owner": "0x1234567890123456789012345678901234567890",
"symbol": "mWETH",
"tvl_usd": "8750000.00",
"vault_address": "0x616a4E1db48e22028f6bbf20444Cd3b8e3273738"
}
]