# token-intel New Solana Token Feed

> token-intel New Solana Token Feed is a paid API for AI agents from nexus-zero.xyz, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Polls for freshly-launched Solana tokens that have passed a 3-source safety screen, returning pre-scored risk intelligence with cursor-based deduplication.

## Facts

- Endpoint: GET https://nexus-zero.xyz/v1/new-tokens
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-intel-new-solana-token-feed-633b35c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WeGvzfR4EjEJg4yVY6vNC

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 token-intel-new-solana-token-feed-633b35c8
```

Example prompt: Check for any newly launched Solana tokens in the last 15 minutes that are safe to trade, have at least $5,000 in liquidity, and a risk score under 25 — give me up to 10 results.

## When to prefer this

Choose this endpoint when you need a continuous, deduplicated feed of brand-new Solana token launches with pre-computed safety scores, rather than looking up risk on a specific known mint. It is purpose-built for monitoring and discovery workflows where freshness and deduplication (via cursor) matter, and where you want multi-source safety screening already applied before you receive results.

## Known failure modes

- Invalid or expired cursor returns error or resets feed
- minLiquidityUsd or maxRisk out of range may return empty result set
- safeOnly=true with strict filters may yield zero results in quiet markets
- Rate limit or payment failure returns 402 or 429 with no token data
- since and minutes conflict — minutes is ignored when since cursor is provided

## How this service works

Poll every 90s for freshly-launched Solana tokens that already passed a 3-source safety screen. Pass the previous response's `cursor` back as `since` to get ONLY new launches — no duplicates, no re-reading. Each token arrives pre-scored: verdict, 0-100 risk, safeToTrade, LP-lock depth, holder concentration, liquidity, age. Filters: since, minutes, minLiquidityUsd, maxRisk, safeOnly, limit.

## Output

A paginated list of recently launched Solana tokens, each carrying: a safety verdict (e.g. CLEAN to RUGGED), a 0–100 risk score, a safeToTrade boolean, LP-lock depth, holder concentration metrics, USD liquidity amount, and token age. A cursor value is included for the next poll to retrieve only newly discovered tokens without duplicates.

## 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": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "string"
      },
      "since": {
       "type": "string",
       "description": "cursor from the previous response — returns ONLY tokens discovered since then"
      },
      "maxRisk": {
       "type": "string"
      },
      "minutes": {
       "type": "string",
       "description": "lookback window in minutes (ignored when `since` is set)"
      },
      "safeOnly": {
       "type": "string",
       "description": "true|1 to return only safeToTrade tokens"
      },
      "minLiquidityUsd": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-intel-new-solana-token-feed-633b35c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nexus-zero.xyz](https://www.zero.xyz/host/nexus-zero.xyz/llms.txt)
