# SolEnrich Trenches Check

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

Runs a multi-signal conviction check on a single Solana token mint, returning a HIGH_CONFLUENCE / MODERATE / SINGLE_SIGNAL / NO_SIGNAL verdict with reasoning based on on-chain velocity, smart wallet buys, and agent attention signals.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/trenches-check/invoke
- Price: $0.03/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-check-3546de62
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_62rYpoUbLo7iVz30PRa6h

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-check-3546de62 -d '<json body>'
```

Example prompt: Run a trenches check on this Solana token — mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — and give me the full verdict with reasoning as JSON.

## When to prefer this

Use this endpoint when you have a specific token mint you want to immediately screen for trading conviction — particularly after discovering it via a new-tokens feed or receiving a shill. It is the fastest single-token verdict in the SolEnrich suite. Prefer it over the comparison or discovery endpoints when you already know the mint and need a pass/fail signal with reasoning rather than a ranked list.

## Known failure modes

- Invalid or malformed mint address returns a validation error
- Token not yet indexed or too new may return NO_SIGNAL with insufficient data
- Rate-limiting or payment failure (x402) if USDC balance is insufficient
- Stale data if called too frequently in rapid succession — repeat checks require 5+ minute gaps for delta signals
- Network timeout if Solana RPC is congested during high-activity periods

## How this service works

The trenches suite pointed at ONE token: pass a mint, get a HIGH_CONFLUENCE / MODERATE / SINGLE_SIGNAL / NO_SIGNAL verdict with reasoning. Runs on-chain velocity (runner stage + 0-1 score), proven-winner wallet buys (vetted realized-PnL seed set), and agent attention (proprietary query stream) against your candidate. The follow-up call to a new-tokens discovery or any shilled token. Repeat checks 5+ min apart unlock liquidity/holder deltas. NFA.

## Output

Returns a conviction verdict label (HIGH_CONFLUENCE, MODERATE, SINGLE_SIGNAL, or NO_SIGNAL), a numeric on-chain velocity score (0–1), evidence of proven-winner wallet buys, agent attention signal data, and a natural-language reasoning summary. When called 5+ minutes after a prior check, also includes liquidity and holder delta comparisons.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Token mint address to check"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  }
 }
}
```

## 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-check-3546de62/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)
