# Ryze Agent - Solana Trenches Graduating Tokens

> Ryze Agent - Solana Trenches Graduating Tokens 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).

Returns a ranked list of Solana 'trenches' tokens that are graduating (gaining momentum/legitimacy), enriched with AI-generated insights and confidence scores

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/base/trenches/graduating
- 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-solana-trenches-graduating-tokens-3b0fae3a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PhDAN8sbIwuhy7SsuOylM

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-solana-trenches-graduating-tokens-3b0fae3a -d '<json body>'
```

Example prompt: Show me the top 10 Solana tokens that are currently graduating in the trenches — I want the AI-generated signals and confidence scores so I can figure out which ones are actually worth watching.

## When to prefer this

Use this endpoint when you need real-time, AI-interpreted data specifically about Solana tokens that are 'graduating' (transitioning from low-cap trenches to broader awareness). Prefer over generic DeFi APIs when you want LLM-generated actionable signals and confidence scores bundled with the raw data, rather than having to interpret raw on-chain data yourself.

## Known failure modes

- Missing required 'limit' field returns a 400 validation error
- Payment not included or insufficient USDC balance results in 402 Payment Required
- API may return empty data array if no tokens are currently graduating
- Confidence score near 0 indicates low-quality signal — treat insight with caution
- Rate limiting or upstream Solana data unavailability may return 503

## 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 token data for graduating Solana trenches tokens, an actionable trading signal, an AI-generated analysis string (from Claude 3.5 Haiku), a confidence score (0-1), and the model name used to generate the insight.

## 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-solana-trenches-graduating-tokens-3b0fae3a/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)
