# Solana Token Due Diligence Risk Verdict

> Solana Token Due Diligence Risk Verdict 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-13).

Performs composite risk analysis on a Solana token mint, combining token analysis, whale activity, and holder concentration to return a SAFE/CAUTION/RISKY verdict.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/due-diligence/invoke
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-token-due-diligence-risk-verdict-30719dbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6s2Dbeyk4l7Wl4SZCLeSZ

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 solana-token-due-diligence-risk-verdict-30719dbe -d '<json body>'
```

Example prompt: Run a due diligence check on Solana token mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v and give me the full JSON risk verdict — I want to know if it's SAFE, CAUTION, or RISKY based on whale activity and holder concentration.

## When to prefer this

Use this endpoint when you need a quick, composite risk verdict on a specific Solana token before trading or investing. It combines multiple risk signals (whale behavior, holder concentration, token analysis) into a single SAFE/CAUTION/RISKY classification, saving the overhead of querying multiple data sources. Prefer this over raw on-chain data endpoints when you want an actionable recommendation rather than raw metrics.

## Known failure modes

- Invalid or non-existent mint address returns an error
- Mint address too short or too long (outside 32-44 character range) causes validation failure
- Newly launched token with insufficient on-chain data may produce low-confidence or incomplete analysis
- Network or upstream Solana RPC issues may cause timeout or partial response
- Incorrect format enum value causes request rejection

## How this service works

Composite risk: token analysis + whale activity + holder concentration. Returns SAFE/CAUTION/RISKY verdict.

## Output

A structured verdict (SAFE, CAUTION, or RISKY) combining token-level analysis, whale wallet activity, and holder concentration metrics. Optionally returned as JSON, a human-readable LLM summary, 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"
  }
 }
}
```

## 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/solana-token-due-diligence-risk-verdict-30719dbe/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)
