# Carbon Cashmere DeFi Yield Discovery API

> Carbon Cashmere DeFi Yield Discovery API is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns current APY and TVL for 200+ DeFi liquidity pools across 85 protocols and multiple chains, with filtering by chain, protocol, and minimum APY

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/yields
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-carbon-cashmere-de-c6274715
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R_lbXfA26waR7OMWbfEVC

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 api-carbon-cashmere-de-c6274715
```

Example prompt: Show me the top 10 DeFi pools with at least 5% APY on Ethereum right now — I want to see both the APY and TVL for each pool so I can decide where to allocate yield.

## When to prefer this

Use this endpoint when you need real-time DeFi yield data across a broad set of protocols and chains in a single call. Ideal for yield farming optimization, portfolio allocation decisions, or comparing APY/TVL across Aave, Compound, Uniswap, Curve, Lido, Pendle on Ethereum, Arbitrum, Base, and Polygon. Prefer over manual protocol-by-protocol queries when breadth (200 pools, 85 protocols) matters.

## Known failure modes

- Invalid chain name returns empty results or 400 error
- min_apy filter too high returns empty pool list
- Rate limiting or payment failure returns 402 or 429
- Protocol name typo causes no matching results
- Stale data if upstream protocol APIs are delayed

## How this service works

Professional crypto market intelligence. Real-time prices, signals, and market scoring.

## Output

A JSON list of DeFi pool entries, each containing pool name, protocol, chain, current APY (as a percentage), and TVL in USD. Returns up to the requested limit of results filtered by the specified chain and minimum APY.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "ethereum",
   "limit": 10,
   "min_apy": 5
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 50,
  "yields": [
   {
    "apy": 4.2,
    "pool": "USDC",
    "chain": "Ethereum",
    "tvl_usd": 850000000,
    "protocol": "Aave"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-carbon-cashmere-de-c6274715/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.carbon-cashmere.de](https://www.zero.xyz/host/api.carbon-cashmere.de/llms.txt)
