# SolEnrich StonkFun Launch Intelligence

> SolEnrich StonkFun Launch Intelligence is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns per-quote-asset analytics for StonkFun token launches — coins, launch counts, trading activity, holder stats, survival rates, volume, tax mix, demand scores, and plain-English recommendations — to guide launch strategy decisions.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/stonk-launch-intel/invoke
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-stonkfun-launch-intelligence-ba59d1aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cc3d-SDHzdpwNQospZR3Z

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-stonkfun-launch-intelligence-ba59d1aa -d '<json body>'
```

Example prompt: Pull up StonkFun launch intel sorted by demand score — top 20 results in LLM format — so I can decide which quote asset to launch against right now.

## When to prefer this

Use this endpoint when an agent or user needs to decide where to launch a token on StonkFun and wants a data-driven comparison across quote assets. It is the right choice when the goal is launch strategy optimization — not general Solana token screening, wallet analysis, or perpetuals data. Prefer this over generic on-chain analytics tools when StonkFun-specific metrics like demand score, tax mix performance, survival rates, and paying holder counts are needed.

## Known failure modes

- Invalid sort value returns 422 validation error
- limit outside 1-100 range returns validation error
- Unknown category enum value returns 422
- min_coins below 1 returns validation error
- Payment not processed results in 402 response requiring x402 payment
- Temporary data unavailability may return 503 or empty result set

## How this service works

What to launch on StonkFun, and against what. Per quote asset: coins, launches (24h / 7d), share trading today, share paying holders today, survival past day 3, volume, median holders and mcap, 100 vs 300 bps tax mix with trading and paying rates, crowding, and a 0-100 demand score. Plus overall stats and plain recommendations. Sort by demand, survival, volume, launches, or paying. Milliseconds.

## Output

A JSON or plain-English structured response containing per-quote-asset rows with: coin counts, 24h and 7d launch counts, share trading and paying holder counts today, day-3 survival rate, volume, median holder count, median market cap, 100bps and 300bps tax mix metrics with trading and paying rates, crowding indicator, and a 0-100 demand score. Also includes overall aggregate stats and plain-English launch recommendations. Rows are sorted by the requested sort field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "enum": [
    "demand",
    "survival",
    "volume",
    "launches",
    "paying"
   ],
   "type": "string",
   "default": "demand"
  },
  "limit": {
   "type": "integer",
   "default": 20,
   "maximum": 100,
   "minimum": 1
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "category": {
   "enum": [
    "xstock",
    "prestock",
    "currency",
    "leverage",
    "solana",
    "collectible",
    "custom"
   ],
   "type": "string"
  },
  "min_coins": {
   "type": "integer",
   "default": 5,
   "minimum": 1,
   "description": "Only quotes with at least this many reward coins"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solenrich-stonkfun-launch-intelligence-ba59d1aa/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)
