# x402.shizu.me DeFi Yield Screener

> x402.shizu.me DeFi Yield Screener is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-15).

Returns DeFi yield opportunities ranked by APY, filtered by chain, project, and minimum TVL using DefiLlama data

## Facts

- Endpoint: GET https://x402.shizu.me/yields
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-shizu-me-defi-yield-screener-3e38819d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tfsRMvKPfvaoMrj-V_O1U

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 x402-shizu-me-defi-yield-screener-3e38819d
```

Example prompt: Show me the top 10 DeFi yield pools on Base with at least $5M TVL, ranked by APY.

## When to prefer this

Use this endpoint when an agent needs to screen, rank, or monitor DeFi yield opportunities across protocols and chains using live DefiLlama data — especially when filtering by chain (e.g. Ethereum, Base, Arbitrum), project, or minimum TVL to route capital or compare yields programmatically.

## Known failure modes

- Invalid chain name returns empty results or error
- limit out of range (below 1 or above 100) returns validation error
- min_tvl below 0 may return unexpected results
- DefiLlama data source temporarily unavailable causing stale or missing data
- No pools match the specified filters returning an empty list

## How this service works

DeFi yield opportunities across chains and protocols (DefiLlama data): pool, project, chain, TVL, and APY, ranked by APY. Query: chain (e.g. Ethereum, Base), project, min_tvl (USD, default 10000000), limit (1-100, default 20). Use to screen for yield, monitor rates, and route capital.

## Output

A ranked list (up to 100 entries) of DeFi liquidity pools, each with pool name, project, chain, TVL in USD, and APY — sorted highest APY first, filtered by the specified chain, project, and minimum TVL thresholds.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "chain",
      "min_tvl",
      "limit"
     ],
     "properties": {
      "chain": {
       "type": "string"
      },
      "limit": {
       "type": "string"
      },
      "min_tvl": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "pools": [
   {
    "apy": 2.185,
    "pool": "STETH",
    "chain": "Ethereum",
    "project": "lido",
    "tvl_usd": 16343025352
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-shizu-me-defi-yield-screener-3e38819d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
