# Ryze Agent - Trader Wallet Positions

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

Fetches AI-analyzed open DeFi positions for a given Solana wallet address, with LLM-generated insights and confidence scores

## Facts

- Endpoint: GET https://api.ryzeagent.xyz/traders/wallet/%7Baddress%7D/positions
- Price: $0.003/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-trader-wallet-positions-2895137b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-kAhAGbSDjxzZ9fKT-caC

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-trader-wallet-positions-2895137b
```

Example prompt: Pull up the current DeFi positions for Solana wallet 7xKX...abc9 and give me the AI-generated insight and confidence score on what they're holding.

## When to prefer this

Use this endpoint when you need AI-interpreted, actionable analysis of a specific Solana wallet's open DeFi positions — not just raw on-chain data. Prefer this over generic blockchain explorers when you want an LLM-generated signal and confidence score alongside the position data, especially for autonomous agent workflows on Solana.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error or empty data
- Wallet with no open DeFi positions returns empty data object
- Payment not completed (x402) results in 402 Payment Required response
- Downstream Solana RPC or indexer outage may return stale or unavailable data
- LLM inference failure may return data without insight or with null confidence

## 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 payload of current positions, an actionable signal string, an AI-generated analysis string (from Claude 3.5 Haiku), and a confidence score between 0 and 1 indicating how strong the signal is.

## Example request

```json
{
 "properties": "positions,pnl,entry_price,exit_price,current_price,token_symbol,token_address"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## 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-trader-wallet-positions-2895137b/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)
