# Solana Token Intelligence

> Solana Token Intelligence is a paid API for AI agents from token-intel-x402.echolonius.deno.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a fused safety, market, and risk verdict for any Solana SPL token by mint address, including authority status, holder concentration, dev holdings, liquidity, and organic score.

## Facts

- Endpoint: POST https://token-intel-x402.echolonius.deno.net/api/token-intel
- Price: $0.01/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-intelligence-b85ed274
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fg-_HjiGf-vnyMwcoD-Xd

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-intelligence-b85ed274 -d '<json body>'
```

Example prompt: Can you run a full safety and market audit on the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to know if it's a rug risk, what the top holder concentration looks like, and whether mint and freeze authorities are disabled?

## When to prefer this

Choose this endpoint when you need a single fused risk verdict for a Solana SPL token that combines on-chain authority checks, holder concentration, developer holdings, organic score, and live market data (price, liquidity, market cap) in one call. Prefer it over building separate calls to RugCheck and DexScreener when you want a synthesized safety label (low/medium/high risk) with explicit red and green flags for fast go/no-go decisions on token investments or listings.

## Known failure modes

- Invalid or malformed mint address returns a validation error
- Unknown or very new mint address not indexed by data providers may return empty or partial data
- Network timeout if upstream data sources (RugCheck, DexScreener) are unavailable
- Payment failure if x402 USDC payment of $0.01 is not completed before the request
- Rate limiting if too many requests are made in a short window

## How this service works

Solana token intelligence: fused safety + market read (authorities, holder concentration, dev holdings, organic-score, liquidity) with a synthesized risk verdict.

## Output

Returns a JSON object containing: an audit block (organic score and label, dev balance %, top holder %, mint/freeze authority flags), a market block (FDV, market cap, price in USD, 24h change, liquidity), a safety block (0–100 score, low/medium/high-risk verdict, red flags list, green flags list), an identity block (token name, symbol, age in days, verified status, holder count, tags), a RugCheck block (risks with levels, LP locked %, normalized score), and a DexScreener block (pair count, liquidity, 24h volume).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "mint"
 ],
 "properties": {
  "mint": {
   "type": "string",
   "description": "SPL mint address (base58)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
 "audit": {
  "organicScore": 91,
  "organicScoreLabel": "high",
  "devBalancePercentage": 0,
  "topHoldersPercentage": 12.1,
  "mintAuthorityDisabled": true,
  "freezeAuthorityDisabled": true
 },
 "market": {
  "fdv": 700000000,
  "mcap": 620000000,
  "priceUsd": 0.0000079,
  "change24h": -1.2,
  "liquidityUsd": 6100000
 },
 "safety": {
  "score": 95,
  "verdict": "low-risk",
  "redFlags": [],
  "greenFlags": [
   "mint authority renounced (supply is fixed)",
   "risk assessed across three independent sources"
  ]
 },
 "identity": {
  "name": "Bonk",
  "tags": [
   "community"
  ],
  "symbol": "Bonk",
  "ageDays": 1290,
  "isVerified": true,
  "holderCount": 995000
 },
 "rugCheck": {
  "risks": [
   {
    "name": "Mutable metadata",
    "level": "warn"
   }
  ],
  "lpLockedPct": 3.1,
  "scoreNormalised": 7
 },
 "dexScreener": {
  "pairCount": 30,
  "liquidityUsd": 1174297,
  "volume24hUsd": 1492394
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-token-intelligence-b85ed274/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from token-intel-x402.echolonius.deno.net](https://www.zero.xyz/host/token-intel-x402.echolonius.deno.net/llms.txt)
