# svm402 Solana Token Discovery

> svm402 Solana Token Discovery is a paid API for AI agents from svm402.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a ranked list of newly active Solana tokens filtered for genuine organic activity, excluding wash-traded tokens

## Facts

- Endpoint: POST https://svm402.com/discover
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/svm402-solana-token-discovery-6d860245
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZIBGyjEtOl5RqblpIWGtq

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 svm402-solana-token-discovery-6d860245 -d '<json body>'
```

Example prompt: Show me up to 20 newly active Solana tokens that have at least 200 holders and an organic score of 60 or higher — I want to find legitimate ones worth researching further, not wash-traded junk.

## When to prefer this

Use this endpoint when you need to discover newly active Solana tokens that have real organic activity rather than artificial wash trading volume. It is the right starting point in a Solana token research pipeline before using /analyze for full token analysis or /safety for risk scoring. Prefer this over generic token aggregators when organic activity filtering is important to avoid manipulated tokens.

## Known failure modes

- No tokens match the requested min_organic_score and min_holders combination — returns empty list
- limit out of range (must be 1-50) — validation error
- min_organic_score out of range (must be 0-100) — validation error
- Payment not processed — x402 payment required before results returned
- Service temporarily unavailable — upstream on-chain data source error

## How this service works

Discover newly active Solana tokens ranked by genuine organic activity, filtered to exclude wash trading. Optionally filter by minimum organic score and holder count. Call this to find tokens worth researching further with /analyze or /safety. — $0.02 USDC

## Output

A ranked list of up to 50 newly active Solana tokens, each scored by organic activity (0-100), with holder counts and relevant metadata — pre-filtered to exclude wash trading. Results are ordered by genuine organic engagement, ready to pass to /analyze or /safety for deeper research.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 50,
   "maximum": 50,
   "minimum": 1,
   "description": "Maximum tokens to return (1-50)"
  },
  "min_holders": {
   "type": "integer",
   "default": 0,
   "minimum": 0,
   "description": "Filter by minimum holder count"
  },
  "min_organic_score": {
   "type": "number",
   "default": 0,
   "maximum": 100,
   "minimum": 0,
   "description": "Filter by minimum organic score (0-100)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/svm402-solana-token-discovery-6d860245/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from svm402.com](https://www.zero.xyz/host/svm402.com/llms.txt)
