# Utilia Solana Token Inspection

> Utilia Solana Token Inspection 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-13).

Fetches live on-chain intelligence for a Solana token mint, including risk flags, holder concentration, and token supply metadata.

## Facts

- Endpoint: GET https://api.utilia.ink/v1/token/%7Bmint%7D
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/utilia-solana-token-inspection-63539471
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KB04b09cgB6YAaF4gxeWw

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-inspection-63539471
```

Example prompt: Can you inspect the Solana token at mint address So11111111111111111111111111111111111111112 and tell me if there are any risk flags, what percentage the top 10 holders control, and whether mint authority is still active?

## When to prefer this

Choose this endpoint when you need live, per-call Solana token intelligence without managing API keys or subscriptions. It is ideal for agents performing pre-trade risk screening, token listing due diligence, or portfolio audits where holder concentration and token authority status are the primary signals. Prefer it over generic RPC calls when you want pre-parsed risk flags and holder concentration ratios rather than raw chain data.

## Known failure modes

- Invalid or malformed mint address returns an error
- Mint address not found on-chain returns empty or 404 response
- Network congestion may delay live data freshness
- Payment failure via x402 if USDC balance is insufficient
- Holder data marked unavailable if indexer has not yet processed the token

## 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

A JSON object containing the mint address, an array of risk flags (e.g. mint authority enabled, freeze authority enabled), the percentage of supply held by the top 10 holders, and a boolean indicating whether full holder data is available. Useful for rapid on-chain due diligence without needing a wallet or RPC node.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## 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-inspection-63539471/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)
