# Ryze Agent - Top Wallets on Base

> Ryze Agent - Top Wallets on Base is a paid API for AI agents from api.ryzeagent.xyz, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns the top-performing trader wallets on the Base chain with AI-generated insights and actionable signals, powered by LLM analysis.

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/base/traders/top-wallets
- Price: $0.008/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-top-wallets-on-base-641c9f49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZXBHWdKIk8GvcT9oPtX43

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-top-wallets-on-base-641c9f49 -d '<json body>'
```

Example prompt: Give me the top 10 trader wallets on Base right now using Ryze Agent — I want the AI-generated signals and confidence scores so I can see who the smartest money is.

## When to prefer this

Choose this endpoint when you need a ranked list of top-performing DeFi trader wallets specifically on the Base chain, enriched with LLM-generated signals and confidence scores — not just raw on-chain data. Prefer this over generic block explorers or raw RPC queries when you want actionable, interpreted insights rather than unprocessed transaction logs.

## Known failure modes

- Missing required 'limit' field returns a validation error
- Limit set too high may return partial data or timeout
- Payment failure (insufficient USDC balance) results in 402 error
- Base chain data unavailable or stale during indexer outages
- Empty result set if no wallet data is available for the query window

## 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 wallet performance data, an actionable trading signal string, an AI-generated natural language analysis of the top wallets, a confidence score (0–1), and the LLM model used to generate the insight (e.g. 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": [
      "limit"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max results (default 10)"
      }
     }
    },
    "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-top-wallets-on-base-641c9f49/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)
