# SuVerse DeFi Yield Pools

> SuVerse DeFi Yield Pools is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns top DeFi yield farming pools ranked by APY across 800+ protocols and all chains, including TVL, base APY, reward APY, IL risk, and stablecoin flag

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-defi-yield-pools
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-445fbdbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EZF1LqQMKQ75ZKgy0hpTi

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 proxy-suverse-io-445fbdbd -d '<json body>'
```

Example prompt: Show me the top DeFi yield farming pools right now, filtered to only pools with at least $500,000 TVL — I want to see the APY breakdown (base vs reward), which chain each pool is on, and whether it's a stablecoin pool so I can pick the best low-risk yield opportunity.

## When to prefer this

Use this endpoint when you need a broad cross-chain, cross-protocol view of DeFi yield opportunities ranked by APY with TVL and risk metadata. Ideal for yield bots, portfolio rebalancers, and treasury managers who need structured pool data with IL risk and stablecoin flags rather than raw DEX pool liquidity data. Prefer over DEX-specific endpoints when you need multi-protocol coverage across all chains.

## Known failure modes

- Minimum TVL filter too high returns empty result set
- Upstream data provider temporarily unavailable returning 503
- Payment not processed correctly returning 402
- Rate limiting if called too frequently returning 429
- Stale data if upstream DeFi data source has not refreshed recently

## How this service works

Top DeFi yield farming pools by APY across 800+ protocols on all chains. Pool name, project, chain, TVL USD, current APY, base APY, reward APY, IL risk, stablecoin flag. AI agent yield bot, portfolio rebalancer, yield aggregator, treasury manager. Filter by min TVL.

## Output

A ranked list of DeFi yield pools across 800+ protocols including pool name, project, chain, TVL in USD, current APY, base APY, reward APY, impermanent loss risk level, and a stablecoin flag — sorted by APY descending

## Example request

```json
{
 "limit": 10,
 "minTvl": 500000,
 "sortBy": "apy"
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-445fbdbd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
