# Ryze Agent DeFi TVL Analytics

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

Fetches Total Value Locked (TVL) data across Solana DeFi protocols with AI-generated insights and actionable signals

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/defi/tvl
- Price: $0.001/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-tvl-analytics-0270c117
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sGmIsLG4e-j7xtyCt64TV

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-tvl-analytics-0270c117 -d '<json body>'
```

Example prompt: Can you pull TVL data for the top 15 Solana DeFi protocols and give me an AI-interpreted signal on where liquidity is concentrated right now?

## When to prefer this

Choose this endpoint when you need Solana-specific DeFi TVL data enriched with LLM-generated insights and actionable signals rather than raw on-chain data alone. Ideal for agents that need to interpret DeFi liquidity trends and communicate them in natural language, especially when building automated DeFi monitoring or reporting workflows on Solana.

## Known failure modes

- Missing required 'limit' field returns 400 validation error
- Limit value too large may return partial or rate-limited results
- Underlying data source unavailable returns 503 or empty data object
- Payment not processed (x402 protocol failure) blocks access entirely
- LLM backend unavailable may return data without insight/signal fields

## 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 containing raw TVL data, an AI-generated actionable signal string, a natural language insight paragraph, a confidence score (0-1), and the LLM model used to generate the analysis (claude-3.5-haiku).

## 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",
      "limit"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain filter: solana|ethereum|all"
      },
      "limit": {
       "type": "integer",
       "description": "Max results"
      }
     }
    },
    "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-tvl-analytics-0270c117/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)
