> ## Documentation Index
> Fetch the complete documentation index at: https://yieldxyz.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Vaults

> Automated yield strategies and vault protocols

Vault protocols automate yield strategies, managing deposits across multiple opportunities to optimize returns. Yield.xyz integrates with leading vault protocols across multiple networks.

***

## Supported protocols

<CardGroup cols={2}>
  <Card title="Morpho" icon="m" href="/documentation/coverage/supported-yields/defi/vaults/morpho">
    ERC-4626 vaults with curated strategies
  </Card>

  <Card title="Ethena" icon="e" href="/documentation/coverage/supported-yields/defi/vaults/ethena">
    sUSDe delta-neutral yield
  </Card>

  <Card title="Sky" icon="cloud" href="/documentation/coverage/supported-yields/defi/vaults/sky">
    sUSDS savings rate
  </Card>

  <Card title="Yearn" icon="y" href="/documentation/coverage/supported-yields/defi/vaults/yearn">
    Battle-tested multi-strategy vaults
  </Card>

  <Card title="Maple" icon="leaf" href="/documentation/coverage/supported-yields/defi/vaults/maple">
    Institutional lending vaults
  </Card>

  <Card title="Euler" icon="e" href="/documentation/coverage/supported-yields/defi/vaults/euler">
    Modular lending vaults
  </Card>

  <Card title="Angle" icon="angle-up" href="/documentation/coverage/supported-yields/defi/vaults/angle">
    EUR/USD yield strategies
  </Card>

  <Card title="Idle Finance" icon="pause" href="/documentation/coverage/supported-yields/defi/vaults/idle">
    Best yield routing
  </Card>

  <Card title="Sommelier" icon="wine-glass" href="/documentation/coverage/supported-yields/defi/vaults/sommelier">
    Actively managed vaults
  </Card>
</CardGroup>

***

## How vaults work

1. **Deposit** — Supply assets to a vault
2. **Earn** — Vault deploys capital across strategies; rewards auto-compound
3. **Withdraw** — Redeem shares for underlying (subject to vault liquidity/queues)

<Note>
  Vaults abstract strategy complexity. Users deposit a single asset; the vault manages allocation, harvesting, and compounding.
</Note>

***

## Quick reference

| Protocol | Networks            | Strategy Type            | Token Model     |
| -------- | ------------------- | ------------------------ | --------------- |
| Morpho   | ETH, Base, Arbitrum | Multi-market allocation  | ERC-4626 shares |
| Ethena   | ETH                 | Delta-neutral stablecoin | sUSDe           |
| Sky      | ETH                 | DSR savings rate         | sUSDS           |
| Yearn v3 | ETH, Arbitrum       | Multi-strategy           | yTokens         |
| Maple    | ETH                 | Institutional lending    | Pool tokens     |

***

## Example flow

<CodeGroup>
  ```bash Get vault metadata theme={null}
  curl --request GET \
    --url https://api.yield.xyz/v1/yields/ethereum-susde-ethena-staking \
    --header 'accept: application/json' \
    --header 'x-api-key: <API_KEY>'
  ```

  ```bash Enter vault theme={null}
  curl --request POST \
    --url https://api.yield.xyz/v1/actions/enter \
    --header 'accept: application/json' \
    --header 'content-type: application/json' \
    --header 'x-api-key: <API_KEY>' \
    --data '{
      "yieldId": "ethereum-susde-ethena-staking",
      "address": "0xYOUR_ADDRESS",
      "arguments": { "amount": "1000000000" }
    }'
  ```
</CodeGroup>

***

## See also

<CardGroup cols={2}>
  <Card title="Lending" icon="hand-holding-dollar" href="/documentation/coverage/supported-yields/defi/lending">
    Direct lending protocols
  </Card>

  <Card title="DeFi Overview" icon="building-columns" href="/documentation/coverage/supported-yields/defi">
    All DeFi categories
  </Card>
</CardGroup>
