# Ryze Agent DeFi Yields Analytics

> Ryze Agent DeFi Yields Analytics is a paid API for AI agents from api.ryzeagent.xyz, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns AI-interpreted DeFi yield opportunities on Solana with LLM-generated insights and confidence scores

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/defi/yields
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ryze-agent-defi-yields-analytics-6447f1a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__rF0q7OUUgc7dZts4r56a

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 ryze-agent-defi-yields-analytics-6447f1a5 -d '<json body>'
```

Example prompt: Show me the top 10 DeFi yield opportunities on Solana right now, including AI-generated signals and how confident the model is in each recommendation.

## When to prefer this

Choose this endpoint when you need AI-interpreted yield signals on Solana — not just raw APY data — particularly when you want a confidence-scored, LLM-narrated recommendation rather than a plain data feed. Best suited for agents making yield farming decisions that benefit from natural language reasoning and actionable signals.

## Known failure modes

- Missing required 'limit' parameter returns validation error
- limit value out of acceptable range returns error
- Payment not attached or insufficient USDC balance returns 402 payment required
- Upstream Solana data unavailable returns 503 or empty data object
- Model inference timeout returns partial or null insight field

## How this service works

AI-enhanced DeFi data API on Solana. 22 pay-per-call endpoints with LLM-interpreted insights. Trenches, traders, LPs, DeFi. Driven by MPP.

## Output

A JSON object containing raw DeFi yield data, an actionable signal string summarizing the opportunity, an AI-generated textual insight (from Claude 3.5 Haiku), a confidence score (0-1), and the model name used to generate the analysis.

## Example request

```json
{
 "limit": 10
}
```

## 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": {
    "body": {
     "type": "object",
     "required": [
      "chain",
      "stablecoin",
      "min_apy",
      "limit"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain filter"
      },
      "limit": {
       "type": "integer",
       "description": "Max results"
      },
      "min_apy": {
       "type": "number",
       "description": "Min APY %"
      },
      "stablecoin": {
       "type": "string",
       "description": "true to filter stablecoins"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object"
      },
      "insight": {
       "type": "string"
      },
      "confidence": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "signal": "actionable signal",
  "insight": "AI-generated analysis",
  "confidence": 0.85,
  "model_used": "claude-3.5-haiku"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ryze-agent-defi-yields-analytics-6447f1a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ryzeagent.xyz](https://www.zero.xyz/host/api.ryzeagent.xyz/llms.txt)
