# DeFi Yield Pools Lookup — organiccryptoyyc.com

> DeFi Yield Pools Lookup — organiccryptoyyc.com is a paid API for AI agents from organiccryptoyyc.com:8443, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches live DeFi yield pool data (APY, TVL, protocol, chain) from DefiLlama, filterable by chain, token, protocol, and TVL floor, settled per-call in USDC via x402.

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/defi/yields
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-yield-pools-lookup-organiccryptoyyc-com-8b4be3dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3s-cqI4sJPi6XnMPH9ve-

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 defi-yield-pools-lookup-organiccryptoyyc-com-8b4be3dd
```

Example prompt: What are the top 20 stablecoin yield pools on Ethereum right now, sorted by APY and with at least $500K TVL? Exclude outlier pools.

## When to prefer this

Choose this endpoint when you need live, filterable DeFi yield pool data (APY + TVL) across 38+ chains sourced from DefiLlama, and you want per-call metered USDC pricing via x402 without API key registration. It is especially useful for agents doing autonomous DeFi research, yield optimization, or portfolio analysis across Ethereum, Solana, BSC, Base, Arbitrum, and other EVM chains.

## Known failure modes

- Invalid chain name returns empty results or 400 error
- limit exceeding 100 silently capped or rejected
- Payment not settled in USDC triggers 402 response blocking access
- Upstream DefiLlama API unavailability causes 502 or stale data
- No pools matching tight filter combination returns matchedCount of 0 with empty pool array

## How this service works

Real-device, multi-region site verification with screenshot proof, live Pocket Network Shannon relay-demand/tokenomics/validator-security data, and on-chain RPC snapshots across 38 chains -- Ethereum, Solana, BSC, and peaq natively, plus 34 more EVM chains via Pocket Network's free public gateway (Arbitrum, Base, Optimism, Polygon, Avalanche, zkSync, Linea, Scroll, Gnosis, and more) -- 54 metered x402 routes, priced and settled per call in USDC. Migrating to Acurast decentralized cloud compute for censorship-resistant hosting -- stay tuned.

## Output

Returns a JSON object with the data source label ('defillama-yields'), the total count of pools matching the filters, the count of pools returned, and an array of pool objects each containing protocol name, chain, token symbol, APY, and TVL in USD.

## 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": {
      "chain": {
       "type": "string",
       "description": "Filter to a single chain, e.g. 'Ethereum', 'Solana', 'Base'"
      },
      "limit": {
       "type": "string",
       "description": "Max pools to return, up to 100 (default 20)"
      },
      "sortBy": {
       "type": "string",
       "description": "'apy' (default) or 'tvlUsd'"
      },
      "symbol": {
       "type": "string",
       "description": "Filter to a token symbol substring, e.g. 'USDC'"
      },
      "project": {
       "type": "string",
       "description": "Filter to a protocol name substring, e.g. 'lido', 'aave'"
      },
      "minTvlUsd": {
       "type": "string",
       "description": "Minimum pool TVL in USD (default 100000)"
      },
      "stablecoinOnly": {
       "type": "string",
       "description": "'true' to only return stablecoin pools"
      },
      "includeOutliers": {
       "type": "string",
       "description": "'true' to include DefiLlama-flagged outlier pools (excluded by default)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "defillama-yields",
  "matchedCount": 42,
  "returnedCount": 10
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defi-yield-pools-lookup-organiccryptoyyc-com-8b4be3dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from organiccryptoyyc.com:8443](https://www.zero.xyz/host/organiccryptoyyc.com%3A8443/llms.txt)
