# SolEnrich Trenches Scan

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

Composes on-chain velocity, smart-money wallet buys, and agent attention momentum into a ranked memecoin list with composite scores and confluence verdicts

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/trenches-scan/invoke
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-trenches-scan-60d2e164
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0aSfOLpXpicxr0iUrmJlh

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-trenches-scan-60d2e164 -d '<json body>'
```

Example prompt: Give me the top 10 highest-confluence Solana memecoin picks right now — tokens launched in the last 24 hours with at least $5,000 liquidity, scored by on-chain velocity, smart-money buys, and agent attention, formatted as JSON.

## When to prefer this

Choose this endpoint when you need a single-call, multi-signal consensus ranking of Solana memecoins rather than querying runner, smart-money, and attention signals separately and merging them yourself. It is ideal for triage and shortlisting across all three alpha sources at once, and its degraded-leg design means partial data is still returned when upstream sources are unavailable. Prefer it over single-signal endpoints when confluence (all three legs agreeing) is the primary selection criterion.

## Known failure modes

- One or more upstream data legs (runner-scan, smart-money-trenches, attention-momentum) may fail and be annotated as degraded rather than returning data for that signal
- Empty result set if no tokens pass the min_liquidity_usd or max_token_age_hours filters
- Limit parameter out of range (must be 1-20) returns validation error
- max_token_age_hours out of range (must be 1-72) returns validation error
- Payment failure if USDC balance is insufficient for the $0.08 per-call fee

## How this service works

One call composes runner-scan (on-chain velocity), smart-money-trenches (proven-winner wallet buys), and attention-momentum (agent query stream) into a ranked memecoin list. Per token: composite score (runner 0.45 / smart-money 0.45 / attention 0.10), confluence count, reasoning, and a HIGH_CONFLUENCE / MODERATE / SINGLE_SIGNAL verdict. Legs degrade independently — an upstream failure annotates the result instead of failing the call. NFA.

## Output

Returns a ranked list of up to 20 Solana memecoins, each with a composite score (runner 45%, smart-money 45%, attention 10%), individual leg scores, a confluence count, human-readable reasoning, and a HIGH_CONFLUENCE / MODERATE / SINGLE_SIGNAL verdict. Upstream leg failures are annotated on the result rather than causing the call to fail.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 20,
   "minimum": 1,
   "description": "Max picks returned"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "min_liquidity_usd": {
   "type": "number",
   "default": 5000,
   "maximum": 10000000,
   "minimum": 0,
   "description": "Liquidity floor in USD (unknown liquidity passes)"
  },
  "max_token_age_hours": {
   "type": "number",
   "default": 24,
   "maximum": 72,
   "minimum": 1,
   "description": "Max token age in hours"
  }
 }
}
```

## 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-trenches-scan-60d2e164/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)
