# Utilia Solana Token Inspector

> Utilia Solana Token Inspector 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, authority status, supply, and holder concentration.

## Facts

- Endpoint: GET https://api.utilia.ink/base/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-inspector-596a77ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mIo29OOQy11Iv741_aYE9

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-inspector-596a77ee
```

Example prompt: Can you pull the live token intelligence for Solana mint So11111111111111111111111111111111111111112 — I want to see any risk flags, what percent of supply the top 10 holders own, and whether the authority controls look dangerous?

## When to prefer this

Choose this endpoint when you need live, on-chain Solana token risk intelligence — particularly risk flags, Token-2022 authority controls, and holder concentration — for a specific mint address. Prefer it over generic blockchain explorers when you need structured, agent-consumable JSON output with explicit risk scoring, and when pay-per-call x402 USDC pricing fits your workflow (no API key required).

## Known failure modes

- Invalid or malformed mint address returns an error or empty result
- Mint address not found on-chain returns no data
- Holder data unavailable flag set to false when indexer hasn't processed the mint
- Network or RPC latency causes slow or failed response
- Payment not completed via x402 USDC results in 402 response blocking access

## 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. freeze authority, mint authority, Token-2022 controls), the percentage of supply held by the top 10 holders, and a boolean indicating whether holder data is available for the mint.

## 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-inspector-596a77ee/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)
