# SolEnrich New Tokens Feed

> SolEnrich New Tokens Feed is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Returns recently launched tokens from DexScreener filtered by liquidity and risk score, ranked safest first

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/new-tokens/invoke
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-new-tokens-feed-92ad30b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bm9d6SIMpoyTShz9cN6Fv

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 solenrich-new-tokens-feed-92ad30b0 -d '<json body>'
```

Example prompt: Show me the 10 safest new tokens that have launched recently, with at least $2000 in liquidity and a max risk score of 0.6, and give me the results in LLM-friendly format.

## When to prefer this

Use this endpoint when you need a quick, pre-filtered snapshot of newly launched tokens ranked by safety. Prefer this over raw DexScreener queries when you want risk scoring and liquidity filtering applied automatically. Best for agents that need actionable token discovery without building their own scoring pipeline.

## Known failure modes

- No tokens match the liquidity/risk filters — returns empty list or error
- DexScreener data unavailable — upstream API failure
- limit out of range (must be 1–20) — validation error
- max_risk_score or min_liquidity_usd out of allowed bounds — validation error
- Payment not processed — 402 payment required error

## How this service works

Recently launched tokens from DexScreener, filtered by liquidity and risk, ranked safest first.

## Output

A ranked list of recently launched tokens (up to 20), each with risk score, liquidity in USD, and token metadata, sorted safest first. Can be returned as raw JSON, LLM-readable text, or both.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "default": 10,
   "maximum": 20,
   "minimum": 1,
   "description": "Number of tokens to return"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "max_risk_score": {
   "type": "number",
   "default": 0.8,
   "maximum": 1,
   "minimum": 0,
   "description": "Maximum risk score (0-1)"
  },
  "min_liquidity_usd": {
   "type": "number",
   "default": 1000,
   "description": "Minimum liquidity in USD"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "output": {
   "briefing": "string (llm format) or object (json format)"
  },
  "run_id": "uuid",
  "status": "succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solenrich-new-tokens-feed-92ad30b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solenrich.com](https://www.zero.xyz/host/api.solenrich.com/llms.txt)
