# mcp.yield.xyz – Get Yield Balances

> mcp.yield.xyz – Get Yield Balances is a paid API for AI agents from mcp.yield.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns current yield positions, accrued rewards, and pending exits for a wallet address across one or more yield protocols.

## Facts

- Endpoint: POST https://mcp.yield.xyz/x402/yields_get_balances
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcp-yield-xyz-get-yield-balances-8b850267
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-msJXWi-jNzuEOenLHLK9

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mcp-yield-xyz-get-yield-balances-8b850267 -d '<json body>'
```

Example prompt: What are my current yield balances, accrued rewards, and any pending exits for wallet 0xABC123... on the Ethereum network?

## When to prefer this

Use this endpoint before calling actions_exit or actions_manage — it provides the current state of a wallet's yield positions necessary to construct exit or management transactions. Prefer this over generic blockchain explorers when you need yield-specific balance data including rewards and pending actions in a single call.

## Known failure modes

- Invalid or malformed wallet address returns a validation error
- Unsupported network slug returns an error indicating the network is not recognized
- Unknown yieldIds return empty or null entries for those IDs
- Network timeout or upstream RPC failure may return a 5xx error
- Wallet with no positions returns an empty balances array

## How this service works

Get live DeFi yield balances and pending actions for any wallet — active staking, lending, vault, and RWA positions with accrued rewards, USD values, current APY, and claimable actions. Covers 3,300+ yields (Lido, Aave, Morpho, tokenized treasuries) across 80+ networks. Call before actions_exit or actions_manage.

## Output

Returns a structured object containing active yield positions, accrued reward amounts, and pending exit statuses for the specified wallet address across the requested yield IDs on the given network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "Wallet address to query (EVM 0x…, Solana base58, or Cosmos bech32)"
  },
  "network": {
   "type": "string",
   "description": "Network slug, e.g. \"ethereum\", \"base\", \"arbitrum\", \"solana\""
  },
  "yieldIds": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Optional: limit the lookup to specific yield IDs, e.g. [\"base-usdc-aave-v3-lending\"]. Omit to scan all yields on the network."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "yieldId": "base-usdc-dinari-usd-plus-vault",
    "balances": [
     {
      "type": "active",
      "token": {
       "name": "USD Coin",
       "symbol": "USDC",
       "network": "base",
       "decimals": 6
      },
      "amount": "0.300521",
      "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
      "amountUsd": "0.300435",
      "isEarning": true,
      "pendingActions": [
       {
        "type": "UNSTAKE",
        "intent": "manage",
        "passthrough": "eyJhZGRy…"
       }
      ]
     }
    ]
   }
  ],
  "errors": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcp-yield-xyz-get-yield-balances-8b850267/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.yield.xyz](https://www.zero.xyz/host/mcp.yield.xyz/llms.txt)
