# Solenrich Smart Money Trenches — Fresh Memecoin Launch Tracker

> Solenrich Smart Money Trenches — Fresh Memecoin Launch Tracker is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Identifies which proven smart-money wallets are buying freshly launched memecoins (under 6 hours old) on Solana and surfaces the top tokens ranked by distinct smart buyer count and recency

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/smart-money-trenches/invoke
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-smart-money-trenches-fresh-memecoin-launch-tracker-2b0ad7f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5AJlfsNkexxdgVW4jTg3s

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-smart-money-trenches-fresh-memecoin-launch-tracker-2b0ad7f6 -d '<json body>'
```

Example prompt: Show me the top 15 fresh Solana memecoins — tokens under 6 hours old — that at least 3 distinct smart-money wallets have been buying in the last 12 hours, and return the results in both JSON and LLM-readable format.

## When to prefer this

Use this endpoint when you need a pre-ape attention signal for very fresh Solana memecoin launches specifically filtered through a vetted set of realized-PnL smart-money wallets. Prefer this over generic on-chain scanners when you want conviction-weighted ranking by distinct smart buyers rather than raw volume or price action, and when you need bot-filtered, live-cadence data rather than lagged aggregations.

## Known failure modes

- No tokens meet min_buyers threshold for the requested time window — returns empty list
- max_token_age_hours or hours_back too narrow to capture any qualifying buys
- Seed wallet data temporarily stale if cadence re-check is in progress
- Payment failure (402) if x402 USDC balance insufficient
- Invalid parameter values (e.g. limit > 25 or min_buyers > 14) return 422 validation error

## How this service works

Which proven-winner wallets are aping fresh (<6h) memecoin launches right now, and what are they buying? Vetted seed set of realized-PnL winners + conviction holders (bot-filtered, live cadence re-checked every scan). Recent buys overlaid against token launch times, ranked by distinct smart buyers + recency. Pre-ape attention signal — pair with due-diligence.

## Output

A ranked list of freshly launched Solana tokens (up to 25) that proven, bot-filtered smart-money wallets have recently purchased, each entry showing token identity, launch time, buy timestamps, distinct smart buyer count, and recency signals — delivered in JSON, LLM-readable prose, or both formats.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 25,
   "minimum": 1,
   "description": "Max tokens to return"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "hours_back": {
   "type": "integer",
   "default": 12,
   "maximum": 48,
   "minimum": 1,
   "description": "How far back to scan seed-wallet buys (hours)"
  },
  "min_buyers": {
   "type": "integer",
   "default": 1,
   "maximum": 14,
   "minimum": 1,
   "description": "Min distinct smart buyers per token to surface it"
  },
  "max_token_age_hours": {
   "type": "number",
   "default": 6,
   "maximum": 72,
   "minimum": 1,
   "description": "Max token age (hours since first pair) to count as fresh"
  }
 }
}
```

## 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-smart-money-trenches-fresh-memecoin-launch-tracker-2b0ad7f6/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)
