# YieldSignal ETH Liquid Staking Decision

> YieldSignal ETH Liquid Staking Decision is a paid API for AI agents from yieldsignal.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns a MOVE or HOLD buy-side signal for ETH liquid staking on Ethereum mainnet based on current risk-weighted APY data across major staking protocols.

## Facts

- Endpoint: GET https://yieldsignal.vercel.app/decision/eth-staking-yield
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/yieldsignal-eth-liquid-staking-decision-24d4278a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cwtMCD6Y5YovRkP_jZC0-

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 yieldsignal-eth-liquid-staking-decision-24d4278a
```

Example prompt: Should I move my ETH liquid staking position or hold it? I'm currently staked with Lido — give me a MOVE or HOLD signal based on today's risk-weighted yields across Ethereum mainnet staking protocols.

## When to prefer this

Use this endpoint when an agent or user needs a binary buy-side MOVE/HOLD signal for ETH liquid staking on Ethereum mainnet specifically, rather than raw APY data alone. Prefer this over the sibling APY-only endpoints when you need a decision recommendation rather than numeric yield data. Choose this over generic DeFi yield aggregators when you want a pre-computed, risk-adjusted, on-chain-attested signal with verifiable accuracy.

## Known failure modes

- On-chain RPC unavailability may cause stale or failed yield reads
- Payment not completed or invalid x402 payment header returns 402 error
- Rate limiting or network errors from the Vercel deployment returning 503
- Protocol data source outage causing incomplete APY comparison

## How this service works

Buyer-side MOVE/HOLD decision for ETH liquid staking (Ethereum mainnet) — same contract as the lending decision routes, for ETH staking. Verified per-asset accuracy is free at /accuracy.json; raw on-chain attestations at /track-record.

## Output

A MOVE or HOLD decision signal for ETH liquid staking on Ethereum mainnet, informed by real-time risk-weighted APY data aggregated from protocols such as Lido, Rocket Pool, and Coinbase Wrapped ETH. The response indicates whether a buyer should reposition their staking allocation or remain in their current position.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "position": {
       "type": "string",
       "description": "Protocol where your capital sits now, or 'idle' if uninvested."
      },
      "amountUsd": {
       "type": "number",
       "description": "Position size in USD. Scales the gain and the break-even."
      },
      "horizonDays": {
       "type": "number",
       "description": "Days you expect to hold before re-evaluating."
      },
      "moveCostUsd": {
       "type": "number",
       "description": "Your estimated cost to move (gas + slippage), in USD."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/yieldsignal-eth-liquid-staking-decision-24d4278a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from yieldsignal.vercel.app](https://www.zero.xyz/host/yieldsignal.vercel.app/llms.txt)
