Get live DeFi yield balances and pending actions for any wallet — active staking, lending,
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.
1000 (raw units)
price
5
calls / 30d
2
unique payers
2026-09-08
updated
Provider
mcp.yield.xyz · discovered, not yet claimed by its owner
Payment (x402 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
}
]Output schema
{
"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"
}
}
}Use it
curl
curl "https://mcp.yield.xyz/x402/yields_get_balances" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mcp.yield.xyz/x402/yields_get_balances");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://mcp.yield.xyz/x402/yields_get_balances")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2332.json, and this resource appears in /discovery/resources and /discovery/search.