# Solana SPL Mint Account Decoder

> Solana SPL Mint Account Decoder is a paid API for AI agents from signalharness.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Decodes and analyzes a Solana SPL token mint account's raw data, returning parsed fields like decimals, supply, mint authority, and freeze authority.

## Facts

- Endpoint: POST https://signalharness.ai/api/agent/services/solana_spl_mint_decode/invoke
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-spl-mint-account-decoder-f21690ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-m1K7D1Uaxelg5pVH0Zs6

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-spl-mint-account-decoder-f21690ef -d '<json body>'
```

Example prompt: Decode this Solana SPL mint account data for me — I need to know the token's decimal places, total supply, mint authority, and whether freeze authority is set: {paste mint account JSON here}.

## When to prefer this

Use this endpoint when you have raw Solana SPL token mint account data and need to extract structured token metadata (decimals, supply, authorities) without making a live RPC call to the Solana network. Ideal for offline analysis, audit pipelines, or when you already have the account data cached and want cheap, fast decoding at $0.01 USDC per call.

## Known failure modes

- Malformed or invalid JSON input results in a parsing error
- Incorrect token program identification leads to misinterpreted fields (warning issued)
- Missing required mint account fields cause incomplete or null output values
- Supplying non-mint account data returns incorrect decoded values without error
- Network mismatch if non-Solana data is supplied

## How this service works

Explore 330 pay-per-call x402 API services and 27 agent-native digital products, with Base USDC pricing, secure Polar checkout, and free discovery.

## Output

Returns a parsed JSON object containing: decimals (token decimal places), display_supply (human-readable supply), supply_atomic (raw supply integer), mint_authority (public key or null), freeze_authority (public key or null), is_initialized (boolean), and the analyzed_network identifier. Also includes any warnings about caller-supplied data accuracy, plus a receipt with payment and execution metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "request_json": {
   "type": "string",
   "maxLength": 65536,
   "minLength": 2
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "replay": false,
  "result": {
   "warnings": [
    "Caller must identify the Token program and supply correct decoded fields."
   ],
   "service_id": "solana_spl_mint_decode",
   "analysis_json": "{\"decimals\":6,\"display_supply\":\"1\",\"freeze_authority\":null,\"is_initialized\":true,\"mint_authority\":\"11111111111111111111111111111111\",\"supply_atomic\":\"1000000\"}",
   "evidence_scope": "caller_supplied_data",
   "analyzed_network": "solana"
  },
  "status": "succeeded",
  "receipt": {
   "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
   "usage": [],
   "status": "succeeded",
   "network": "eip155:8453",
   "artifacts": [],
   "endedAtMs": 0,
   "latencyMs": 0,
   "paymentId": "example-payment",
   "receiptId": "example-receipt",
   "requestId": "example-request",
   "serviceId": "solana_spl_mint_decode",
   "executionId": "example-execution",
   "startedAtMs": 0,
   "amountAtomic": "10000",
   "resultSha256": "1fc4ed79f9736086de44852990d422a4a4d5280d88e11f5afc5db4179fe39cfd",
   "serviceVersion": "1.0.0",
   "settlementReference": "0x0000000000000000000000000000000000000000000000000000000000000000"
  },
  "artifacts": [],
  "requestId": "example-request",
  "executionId": "example-execution"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-spl-mint-account-decoder-f21690ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalharness.ai](https://www.zero.xyz/host/signalharness.ai/llms.txt)
