# Ryze Agent - Graduating Tokens Feed

> Ryze Agent - Graduating Tokens Feed 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 tokens that are graduating (gaining traction/liquidity) in the trenches, with AI-generated insights and confidence scores

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/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-graduating-tokens-feed-792061e6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cFq-2-nWJNs16Yq5wYg9v

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-graduating-tokens-feed-792061e6 -d '<json body>'
```

Example prompt: Pull the top 10 graduating tokens right now from Ryze Agent's trenches feed — I want the AI signals and confidence scores to see which Solana tokens are picking up real momentum.

## When to prefer this

Choose this endpoint when you need real-time AI-interpreted signals specifically about tokens graduating in the Solana trenches ecosystem. Prefer this over generic token list endpoints when you want LLM-generated actionable insights and confidence scores, not just raw on-chain data. Best for trading agents monitoring early-stage Solana token momentum.

## Known failure modes

- Missing required 'limit' parameter returns 400 validation error
- Limit value out of acceptable range may return error or be clamped
- Payment failure via x402 protocol results in 402 Payment Required
- Upstream Solana data unavailability may return empty data or 503
- Stale or thin market data may lower confidence scores significantly

## 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 token data for graduating Solana tokens, an actionable signal string, an AI-generated textual analysis/insight (from Claude 3.5 Haiku), a confidence score (0-1 float), and the model 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-graduating-tokens-feed-792061e6/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)
