# Ryze Agent - DeBridge Cross-Chain Yield Migration Analyzer

> Ryze Agent - DeBridge Cross-Chain Yield Migration Analyzer is a paid API for AI agents from api.ryzeagent.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Analyzes cross-chain USDC yield opportunities via deBridge and returns AI-ranked migration recommendations with APY, TVL, and risk scores across Base, Ethereum, Optimism, and other chains.

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/base/debridge/yield-migrate
- Price: $0.005/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-debridge-cross-chain-yield-migration-analyzer-83a78103
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SPIoSN3C0SoVQOfgmShek

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-debridge-cross-chain-yield-migration-analyzer-83a78103 -d '<json body>'
```

Example prompt: Show me the top 10 cross-chain yield migration opportunities for USDC starting from Base — I want APYs, risk scores, and an AI recommendation on whether I should bridge to another chain.

## When to prefer this

Use this endpoint when an agent needs to evaluate whether to migrate USDC liquidity across chains using deBridge, specifically when the user wants AI-interpreted yield comparisons with risk scoring across protocols like Morpho, Aave, Compound, and MarginFi. Prefer this over generic DeFi APIs when cross-chain context and LLM-generated actionable signals are required.

## Known failure modes

- Missing required 'limit' field returns validation error
- limit value out of acceptable range may return empty or error response
- DeBridge or underlying yield data source unavailable causes degraded or empty data response
- Payment not processed (x402) results in 402 Payment Required before data is returned
- LLM inference failure may return reduced insight or null confidence score

## 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

Returns a JSON object with a list of yield opportunities sorted by relevance, each showing APY, chain, protocol name, TVL in USD, and a risk score (0-1). Also includes an AI-generated insight string, an actionable signal, a confidence score (e.g. 0.85), the model used (Claude 3.5 Haiku), and a plain-language recommendation (e.g. 'Stay on current chain — yields are competitive').

## 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": [
      "src",
      "token",
      "amount"
     ],
     "properties": {
      "src": {
       "type": "string",
       "description": "Source chain"
      },
      "token": {
       "type": "string",
       "description": "Token symbol"
      },
      "amount": {
       "type": "string",
       "description": "Amount"
      }
     }
    },
    "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-debridge-cross-chain-yield-migration-analyzer-83a78103/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)
