{
  "x402Version": 2,
  "id": 2332,
  "slug": "2332",
  "resource": "https://mcp.yield.xyz/x402/yields_get_balances",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xD433f056270912659f073D5FFE7Ae247e39235A5",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "1000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:196",
      "payTo": "0x14c1cf26360F42681105A03137CF6951BdDB1293",
      "asset": "0x4ae46a509f6b1d9056937ba4500cb143933d2dc8",
      "amount": "1000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:196",
      "payTo": "0x14c1cf26360F42681105A03137CF6951BdDB1293",
      "asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
      "amount": "1000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:196",
      "payTo": "0x14c1cf26360F42681105A03137CF6951BdDB1293",
      "asset": "0x74b7f16337b8972027f6196a17a631ac6de26d22",
      "amount": "1000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
            "network": "base"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "errors": [],
            "items": [
              {
                "balances": [
                  {
                    "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
                    "amount": "0.300521",
                    "amountUsd": "0.300435",
                    "isEarning": true,
                    "pendingActions": [
                      {
                        "intent": "manage",
                        "passthrough": "eyJhZGRy…",
                        "type": "UNSTAKE"
                      }
                    ],
                    "token": {
                      "decimals": 6,
                      "name": "USD Coin",
                      "network": "base",
                      "symbol": "USDC"
                    },
                    "type": "active"
                  }
                ],
                "yieldId": "base-usdc-dinari-usd-plus-vault"
              }
            ]
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "properties": {
                  "address": {
                    "description": "Wallet address to query (EVM 0x…, Solana base58, or Cosmos bech32)",
                    "type": "string"
                  },
                  "network": {
                    "description": "Network slug, e.g. \"ethereum\", \"base\", \"arbitrum\", \"solana\"",
                    "type": "string"
                  },
                  "yieldIds": {
                    "description": "Optional: limit the lookup to specific yield IDs, e.g. [\"base-usdc-aave-v3-lending\"]. Omit to scan all yields on the network.",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  }
                },
                "required": [
                  "address",
                  "network"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "description": "Core fields shown; balance entries vary by yield type and may carry additional fields — e.g. validator data on staking yields, share tokens on vaults, KYC/eligibility data on RWA yields (this schema is intentionally non-exhaustive).",
                "properties": {
                  "errors": {
                    "items": {
                      "properties": {
                        "error": {
                          "type": "string"
                        },
                        "yieldId": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "items": {
                    "items": {
                      "properties": {
                        "balances": {
                          "items": {
                            "properties": {
                              "address": {
                                "type": "string"
                              },
                              "amount": {
                                "type": "string"
                              },
                              "amountUsd": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "isEarning": {
                                "type": "boolean"
                              },
                              "pendingActions": {
                                "description": "Claimable actions — pass type and passthrough to actions_manage",
                                "items": {
                                  "properties": {
                                    "intent": {
                                      "type": "string"
                                    },
                                    "passthrough": {
                                      "type": "string"
                                    },
                                    "type": {
                                      "type": "string"
                                    }
                                  },
                                  "type": "object"
                                },
                                "type": "array"
                              },
                              "token": {
                                "description": "Token metadata: symbol, name, decimals, network, address",
                                "type": "object"
                              },
                              "type": {
                                "description": "e.g. \"active\", \"rewards\", \"unstaking\"",
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "yieldId": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  }
                },
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "mcp.yield.xyz",
  "lastUpdated": "2026-09-08T17:22:42.826Z",
  "quality": {
    "calls30d": 5,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-08T17:22:42.692Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "mcp.yield.xyz",
    "manifest_name": "mcp.yield.xyz",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}