# Ryze Agent - New Tokens Discovery on Solana

> Ryze Agent - New Tokens Discovery on Solana 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 a list of newly launched Solana tokens with AI-generated insights and actionable signals for DeFi traders

## Facts

- Endpoint: POST https://api.ryzeagent.xyz/base/trenches/bags/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-tokens-discovery-on-solana-02722c3f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T2PDPeXg4nJaf-1F34k3j

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-tokens-discovery-on-solana-02722c3f -d '<json body>'
```

Example prompt: Show me the top 10 newest tokens just launched on Solana with AI-generated signals and confidence scores so I can spot early opportunities in the trenches.

## When to prefer this

Choose this endpoint when you need to discover brand-new token launches on Solana with AI-interpreted trading signals rather than manually parsing raw on-chain data. Ideal for DeFi agents focused on early-stage token opportunities, 'trenches' trading strategies, or automating new token monitoring with confidence-scored insights.

## Known failure modes

- Missing required 'limit' parameter returns a validation error
- Limit value too large may result in slow response or truncated data
- Upstream Solana data unavailability may cause empty or stale results
- Payment failure via x402 protocol blocks access to the endpoint
- LLM inference failure may return null insight or confidence score

## 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 new token data, an actionable trading signal string, an AI-generated analysis insight, a confidence score (0-1), and the model name used (claude-3.5-haiku) for each token returned up to the specified limit.

## 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-tokens-discovery-on-solana-02722c3f/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)
