# Ryze Agent - Autonomous DeFi Analytics Engine (Ask Endpoint)

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

Accepts a natural language or structured query and returns AI-interpreted DeFi analytics insights on Solana, including actionable signals and confidence scores

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/ask
- Price: $0.025/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-autonomous-defi-analytics-engine-ask-endpoint-9d1e8824
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oBMxar0Obc6HE5zdrxqus

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-autonomous-defi-analytics-engine-ask-endpoint-9d1e8824 -d '<json body>'
```

Example prompt: Give me the top 10 Solana DeFi trading signals right now — I want AI-interpreted insights with confidence scores on what smart money is doing in the trenches.

## When to prefer this

Choose this endpoint when you need AI-interpreted, LLM-enhanced DeFi signals on Solana rather than raw on-chain data alone. Best when you want confidence-scored actionable insights about traders, LPs, or trending tokens without post-processing the data yourself. Prefer over generic on-chain data APIs when you need the analysis layer built in.

## Known failure modes

- Missing required 'limit' parameter returns validation error
- Payment not received or insufficient USDC balance causes 402 rejection
- Limit value out of acceptable range may return partial or error response
- Underlying Solana data unavailable returns empty data with low confidence signal
- Model inference timeout may return partial insight

## 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 'data' field containing raw DeFi data, an 'insight' string with LLM-generated analysis, an 'actionable signal' string, a 'confidence' score (0-1), and the 'model_used' (claude-3.5-haiku). Results are limited to the requested count.

## 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": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Natural language DeFi question"
      }
     }
    },
    "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-autonomous-defi-analytics-engine-ask-endpoint-9d1e8824/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)
