Skip to main content
1

Connect wallet

Go to https://app.blend.money/ and connect a Web3 wallet.
Hardware wallets are recommended for larger balances. Supported wallets include MetaMask, WalletConnect, and more.
2

Deploy your Safe

Blend deploys a 1:1 Gnosis Safe where you are the sole signer. Gas is abstracted.
You will see your Safe address after deployment.
3

Choose risk profile

Pick Conservative, Balanced, or Aggressive. You can change this anytime.
4

Deposit funds

Deposit a supported asset into your Safe to start earning yield immediately. Supported assets include USDC, USDT, and other stablecoins across multiple chains.
Cross-chain deposits are automatically handled via LiFi and Garden adapters.
5

Activate automation

Automation allocates a portion to delta‑neutral strategies within constraints.
You can pause automation or withdraw anytime. Funds remain in your Safe.
Want the details? See Architecture, Security, the SDKs for programmatic integration, and the API for data queries.

Developer Integration

For developers looking to integrate Blend into their applications:

Using the REST API

  • cURL
  • JavaScript
  • Python
# Get available strategies
curl "https://api.blend.money/strategy/available?integration=USX"

# Query global TVL
curl "https://api.blend.money/vault/tvl/global"

Using the TypeScript SDKs

import { BlendClientWithActions } from "@blend-money/sdk-actions";
import { Integrations } from "@blend-money/sdk-types";

const client = new BlendClientWithActions({
  baseUrl: "https://api.blend.money",
  userAddress: "0x...",
  integratorId: "your-app-v1.0",
}, {});

// Get strategies and create deposit plans
const strategies = await client.strategy.getAvailableStrategies(Integrations.USX);
const plan = await client.actions.deposit(inputToken, strategies[0], amount, slippageBps);

Interactive API Playground

Test all API endpoints directly in your browser at our Interactive Playground.