# Ryze Agent DeFi Yields Scanner

> Ryze Agent DeFi Yields Scanner 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).

Fetches and AI-analyzes DeFi yield opportunities on Solana, filtering by chain, stablecoin status, and minimum APY, with LLM-generated actionable insights and confidence scores

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/base/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-scanner-e955f8b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GwneLL8JZ51Z4H-f3--74

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-scanner-e955f8b6 -d '<json body>'
```

Example prompt: Show me the top 10 stablecoin yield opportunities on Solana with at least 8% APY, and give me the AI-generated signals and confidence scores for each one.

## When to prefer this

Choose this endpoint when you need AI-interpreted, actionable yield intelligence on Solana DeFi rather than raw data alone — especially when filtering for stablecoin-only pools above a minimum APY threshold and wanting a confidence-scored signal from an LLM rather than having to interpret raw pool metrics yourself.

## Known failure modes

- Missing required fields (chain, stablecoin, min_apy, limit) returns 400 validation error
- No pools found matching the APY and stablecoin filters returns empty data object
- Chain identifier not supported returns error or empty results
- LLM analysis failure may return null insight or reduced confidence score
- Rate limiting or payment failure (x402) returns 402 payment required

## 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 yield opportunity data, an AI-generated insight string explaining the opportunity landscape, an actionable signal summary, a confidence score (0-1), and the name of the LLM model used to generate the analysis (e.g. claude-3.5-haiku).

## Example request

```json
{
 "chain": "solana",
 "limit": 10,
 "min_apy": 5,
 "stablecoin": "true"
}
```

## 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-scanner-e955f8b6/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)
