# Utilia Solana Mint Inspector

> Utilia Solana Mint 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-15).

Inspect a Solana token mint address for live authorities, Token-2022 controls, supply, and holder concentration signals.

## Facts

- Endpoint: GET https://api.utilia.ink/base/v1/token/:mint
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/utilia-solana-mint-inspector-fd38f442
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DS-jk47NUfrxxruFORS8y

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-mint-inspector-fd38f442
```

Example prompt: Can you inspect the Solana mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v and tell me if there are any live mint or freeze authorities, what Token-2022 controls are active, and whether holder concentration looks risky?

## When to prefer this

Use this endpoint when you need a quick, pre-trade or pre-integration risk assessment of a Solana token mint — especially to check for dangerous authorities, Token-2022 extension risks, or whale concentration before executing a swap or listing a token. Prefer this over raw RPC calls when you want pre-parsed, signal-ready output without handling raw Solana account data yourself.

## Known failure modes

- Invalid or malformed mint address returns a 4xx error
- Mint address not found on Solana mainnet returns a not-found error
- Network or RPC issues may cause transient 5xx errors
- Payment failure (x402) if USDC balance insufficient

## How this service works

Inspect a Solana mint for live authorities, Token-2022 controls, supply, and holder concentration signals.

## Output

Returns structured data about the Solana mint including: live mint authority and freeze authority status, Token-2022 extension controls (e.g. transfer fees, permanent delegate, confidential transfers), total token supply, and holder concentration signals indicating whether ownership is distributed or heavily concentrated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana token mint address"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/utilia-solana-mint-inspector-fd38f442/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)
