# Utilia Solana Token Risk Assessment

> Utilia Solana Token Risk Assessment is a paid API for AI agents from api.utilia.ink, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Evaluates a Solana token mint for risk signals including authority flags, holder concentration, and Token-2022 controls

## Facts

- Endpoint: POST https://api.utilia.ink/v1/token/risk
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/utilia-solana-token-risk-assessment-23658a98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rQxq3UHlfRlUJPy2gjUXK

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 utilia-solana-token-risk-assessment-23658a98 -d '<json body>'
```

Example prompt: Can you check the risk profile of this Solana token — mint address So11111111111111111111111111111111111111112 — and tell me if there are any red flags like concentrated holdings or active mint authority?

## When to prefer this

Use this endpoint when you need a quick, structured risk assessment of a specific Solana token before trading, investing, or integrating it into a DeFi workflow. It is especially valuable for screening new or unknown mints for rug-pull indicators, concentrated ownership, and dangerous Token-2022 authority configurations. Prefer it over general blockchain explorers when you need machine-readable risk flags and holder concentration data in a single call without managing API keys.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Mint not found on-chain returns empty or unavailable holder data
- Holder data unavailable flag set to false when on-chain data is insufficient
- Rate limiting or payment failure if x402 USDC micropayment is not included
- Network timeouts if Solana RPC is congested

## How this service works

Give a Solana agent live compute-unit price bids for $0.002 per call via x402 USDC. One AgentCash command, no API key or subscription.

## Output

Returns a JSON object with the queried mint address, an array of risk flags (e.g. active mint authority, freeze authority, suspicious Token-2022 controls), the percentage of supply held by the top 10 holders, and a boolean indicating whether holder data was available for the mint.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "string",
   "description": "Base58 Solana token mint address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "So11111111111111111111111111111111111111112",
  "riskFlags": [],
  "top10HolderPercent": 22.4,
  "holderDataAvailable": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/utilia-solana-token-risk-assessment-23658a98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.utilia.ink](https://www.zero.xyz/host/api.utilia.ink/llms.txt)
