# Solana Token Light Enrichment

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

Returns price (median of 3 sources), market cap, volume, liquidity, slippage estimates at 4 position sizes, risk flags, and verification status for a Solana token mint address.

## Facts

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

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-light-enrichment-af9661b2 -d '<json body>'
```

Example prompt: Pull the price, liquidity, slippage at standard position sizes, and any risk flags for Solana token mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — give me the full JSON output.

## When to prefer this

Use this endpoint when you need a quick, cost-efficient snapshot of a Solana token's market data including price, liquidity, slippage at multiple sizes, and risk signals — particularly when you want a median price across multiple sources rather than a single feed, or when you need risk/verification flags alongside market metrics in one call. Prefer this over heavier endpoints when you don't need full cross-venue perp funding or wallet-level analysis.

## Known failure modes

- Invalid or malformed mint address returns a validation error
- Unrecognized or very new token mint may return partial or empty data
- Network timeouts from upstream price sources may return stale or incomplete pricing
- Payment not confirmed (x402) results in 402 Payment Required response
- Mint address length outside 32-44 characters returns schema validation error

## How this service works

Price (median of 3 sources), market cap, volume, liquidity, slippage estimates at 4 position sizes, risk flags, verification status.

## Output

A JSON (or LLM-friendly text, or both) object containing: median price aggregated from 3 sources, market cap, 24h volume, liquidity depth, slippage estimates at 4 different position sizes, risk flags (e.g. rug indicators, low liquidity warnings), and verification/legitimacy status for the queried Solana token.

## 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-light-enrichment-af9661b2/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)
