# SolEnrich Full Token Enrichment

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

Enriches a Solana token with top-20 holder breakdown, HHI concentration index, volatility metrics, and slippage estimates on top of a base token analysis.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/enrich-token-full/invoke
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-full-token-enrichment-954310c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vEzXOObCrNvL4YISG9VDH

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-full-token-enrichment-954310c7 -d '<json body>'
```

Example prompt: Give me the full enriched token analysis for Solana mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — include the top 20 holder breakdown and return the results as JSON.

## When to prefer this

Use this endpoint when you need a comprehensive single-call token profile including holder concentration (HHI), whale analysis, volatility, and slippage — particularly for due diligence, risk assessment, or rug-pull screening on Solana tokens. Prefer over lighter token endpoints when holder distribution data is specifically required.

## Known failure modes

- Invalid or malformed mint address (not 32-44 chars) returns validation error
- Unknown or very new mint address with insufficient on-chain data may return partial results
- Network or RPC congestion on Solana may cause timeouts
- Payment failure via x402 protocol results in 402 Unauthorized

## How this service works

Adds top 20 holders, HHI concentration index, volatility metrics, slippage estimates to light token analysis.

## Output

Returns a structured token analysis enriched with: list of top 20 holder addresses and their balances, Herfindahl-Hirschman Index (HHI) measuring ownership concentration, volatility metrics, and slippage estimates at various trade sizes. Can be returned as JSON, LLM-friendly text, or both.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Solana token mint address"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "include_holders": {
   "type": "boolean",
   "default": true,
   "description": "Include top 20 holder breakdown"
  }
 }
}
```

## 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-full-token-enrichment-954310c7/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)
