> ## 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.

# DeFiKit

> Unified access to DeFi lending, vaults, stablecoins, and yield strategies across 80+ networks

DeFiKit is the Yield.xyz kit for integrating **DeFi and stablecoin yield** through a single, non-custodial interface — spanning lending markets, vault strategies, liquid staking, and RWAs across 80+ networks and 2,900+ opportunities.

***

## What you can build

<CardGroup cols={2}>
  <Card title="Wallets & Super Apps" icon="wallet">
    Embed DeFi yields directly into wallet UX — let users earn on idle assets with one tap.
  </Card>

  <Card title="Neobanks & Fintechs" icon="building-columns">
    Offer competitive savings rates backed by DeFi protocols, with full compliance controls.
  </Card>

  <Card title="Custodians & Asset Managers" icon="vault">
    Enable institutional clients to access DeFi yield with custody-grade signing workflows.
  </Card>

  <Card title="Treasury & Corporate" icon="chart-pie">
    Optimize idle treasury assets across lending markets and stable yield strategies.
  </Card>
</CardGroup>

***

## Core capabilities

* **Unified API for enter / exit / manage** — Ready-to-sign, ordered unsigned transactions across DeFi strategies. Your stack signs and broadcasts.

* **Rich metadata for discovery and approvals** — TVL, capacity signals, APY windows, and risk signals for informed decision-making.

* **40+ DeFi protocols (and growing)** — Consistent primitives and lifecycle-aware position tracking across Aave, Compound, Morpho, Yearn, Ethena, and more.

* **Multi-chain coverage** — Same protocols, same API across Ethereum, Base, Arbitrum, BNB Chain, Polygon, and 80+ networks.

* **OAV support (optional)** — Optimized Allocator Vaults for auto-compounding, reinvestment, and cross-chain routing with configurable deposit/management/performance fees.

* **Security posture** — SOC 2 Type I completed; Type II in progress (expected Q1 2026). See [Security & Compliance](/documentation/shield-security/security-compliance).

***

## Integration at a glance

<Steps>
  <Step title="Discover DeFi opportunities">
    List supported yields with metadata (APY, TVL, capacity) using the [Discovery API](/api-reference/YieldsController_getYields).
  </Step>

  <Step title="Request an action">
    Call `enter`, `exit`, or `manage` for a chosen yield. See [Actions](/documentation/core-concepts/actions) for the full model.
  </Step>

  <Step title="Sign & submit">
    Execute ordered transactions using your wallet/custody infrastructure. See [Transaction Submission](/documentation/build-with-api/transaction-submission).
  </Step>

  <Step title="Track positions">
    Use balances to track lifecycle states, rewards, and follow-up actions. See [Balances & Positions](/documentation/core-concepts/balances-positions).
  </Step>
</Steps>

***

## Example flow

<CodeGroup>
  ```bash Get yield metadata theme={null}
  curl --request GET \
    --url https://api.yield.xyz/v1/yields/base-usdc-aave-v3-lending \
    --header 'accept: application/json' \
    --header 'x-api-key: <API_KEY>'
  ```

  ```bash Enter position 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": "base-usdc-aave-v3-lending",
      "address": "0xYOUR_ADDRESS",
      "arguments": { "amount": "1000000000" }
    }'
  ```

  ```bash Get balances theme={null}
  curl --request POST \
    --url https://api.yield.xyz/v1/yields/base-usdc-aave-v3-lending/balances \
    --header 'accept: application/json' \
    --header 'content-type: application/json' \
    --header 'x-api-key: <API_KEY>' \
    --data '{ "address": "0xYOUR_ADDRESS" }'
  ```
</CodeGroup>

***

## Protocol coverage

<Tabs>
  <Tab title="Lending">
    | Protocol    | Networks                        | Description                  |
    | ----------- | ------------------------------- | ---------------------------- |
    | Aave v3     | ETH, Base, Arbitrum, Polygon, + | Multi-chain money markets    |
    | Compound v3 | ETH, Base, Arbitrum             | USDC-focused lending         |
    | Morpho      | ETH, Base                       | Optimized peer-to-peer rates |
    | Venus       | BNB Chain                       | BNB ecosystem lending        |
    | Radiant     | Arbitrum, BNB                   | Cross-chain lending          |
  </Tab>

  <Tab title="Vaults">
    | Protocol     | Networks      | Description                        |
    | ------------ | ------------- | ---------------------------------- |
    | Yearn v2/v3  | ETH, Arbitrum | Battle-tested automated strategies |
    | Sommelier    | ETH           | Actively managed vaults            |
    | Idle Finance | ETH           | Best-yield routing                 |
    | Beefy        | Multi-chain   | Auto-compounding vaults            |
  </Tab>

  <Tab title="Stablecoins">
    | Protocol | Asset | Description                    |
    | -------- | ----- | ------------------------------ |
    | Ethena   | sUSDe | Delta-neutral stablecoin yield |
    | Sky      | sUSDS | Maker/Sky savings rate         |
    | Angle    | agEUR | EUR-denominated yield          |
    | Mountain | USDM  | Tokenized T-bill yield         |
  </Tab>
</Tabs>

For the full list, see [Supported Networks](/documentation/coverage/supported-networks) and [DeFi Yields](/documentation/coverage/supported-yields/defi).

***

## OAV & monetization

**Optimized Allocator Vaults (OAVs)** are optional smart contract wrappers that enable:

* **Auto-compounding / reinvestment** — Automatic reward harvesting and redeployment
* **Cross-chain routing** — Optimal yield allocation across networks
* **Fee monetization** — Configurable deposit, management, and performance fees

OAVs are deployed per-partner and can be customized to your business model.

<CardGroup cols={2}>
  <Card title="OAV Overview" icon="vault" href="/documentation/oavs/overview">
    How OAVs work
  </Card>

  <Card title="Fee Configuration" icon="dollar-sign" href="/documentation/core-concepts/fees">
    Configure fee structures
  </Card>
</CardGroup>

***

## Security & compliance

DeFiKit inherits Yield.xyz's security posture:

* **SOC 2 Type I** — Completed
* **SOC 2 Type II** — In progress (expected Q1 2026)
* **Non-custodial architecture** — Yield.xyz never holds user funds or keys
* **Shield integration** — Transaction decoding, validation, and intent verification for institutional flows

<CardGroup cols={2}>
  <Card title="Shield" icon="shield" href="/documentation/shield-security/shield">
    Transaction validation layer
  </Card>

  <Card title="Security & Compliance" icon="lock" href="/documentation/shield-security/security-compliance">
    Full security documentation
  </Card>
</CardGroup>

***

## Where to go next

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/documentation/quickstart">
    Make your first DeFi request
  </Card>

  <Card title="DeFi Yields" icon="chart-line" href="/documentation/coverage/supported-yields/defi">
    Browse DeFi opportunities
  </Card>

  <Card title="Enterprise Patterns" icon="building-columns" href="/guides/enterprise/custody-signing-flows">
    Institutional custody integration
  </Card>

  <Card title="Pricing" icon="credit-card" href="/documentation/plans-limits/kit-pricing/defikit-pricing">
    DeFiKit pricing model
  </Card>
</CardGroup>
