# Ryze Agent - New Solana Tokens Discovery

> Ryze Agent - New Solana Tokens Discovery 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).

Fetches newly launched tokens on Solana with AI-generated actionable insights and confidence scores

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/base/trenches/new-tokens
- 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-new-solana-tokens-discovery-2b1721d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dUCS4WuDQOmadg6JtRZmI

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-new-solana-tokens-discovery-2b1721d8 -d '<json body>'
```

Example prompt: Show me the top 20 newest token launches on Solana right now, with Ryze Agent's AI signals and confidence scores so I can spot early alpha in the trenches.

## When to prefer this

Use this endpoint when you need real-time discovery of newly launched Solana tokens combined with LLM-interpreted trading signals — ideal for agents automating DeFi research, memecoin scouting, or early alpha detection in the Solana trenches. Prefer this over generic on-chain data APIs when you need both raw data and AI-generated insights in a single call.

## Known failure modes

- Missing required 'limit' field returns 400 validation error
- Limit value out of expected range may return empty or error response
- Payment failure (x402) if USDC balance insufficient — returns 402 Payment Required
- Solana RPC or data source downtime may return 500 or stale data
- Extremely high limit values may cause timeouts or truncated results

## 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 raw token data, an actionable trading signal string, an AI-generated analytical insight about the new tokens, a confidence score (0-1), and the LLM model used (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-new-solana-tokens-discovery-2b1721d8/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)
