# SolMachina Token Intel

> SolMachina Token Intel is a paid API for AI agents from api.solmachina.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a comprehensive risk profile and on-chain intelligence digest for a Solana SPL token given its mint address

## Facts

- Endpoint: GET https://api.solmachina.com/v1/token-intel
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solmachina-token-intel-2c5940f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lN2H9YUQK2iEL3YcTh5Wl

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 solmachina-token-intel-2c5940f3
```

Example prompt: Before I ape into this Solana token, can you pull a full risk profile on mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to know the risk band, whether new tokens can still be minted, if accounts can be frozen, and how concentrated the top holders are?

## When to prefer this

Choose this endpoint when you need structured, source-cited Solana token risk intelligence in a single call without requiring API keys or account setup — ideal for AI agents that need to gate trades, flag risky tokens, or enrich DeFi workflows with on-chain safety signals. Prefer it over generic blockchain explorers when you need machine-readable risk bands and concentration metrics rather than raw on-chain data.

## Known failure modes

- Invalid or malformed Base58 mint address returns an error
- Mint address not found on Solana mainnet returns a not-found error
- Network or RPC issues may cause timeouts
- Payment failure via x402 returns a 402 response requiring USDC payment
- Rate limiting or quota issues may temporarily block access

## How this service works

Before an AI agent executes on Solana, it asks SolMachina: risk + a decision (EXECUTE/REVIEW/REJECT) + an SMRI score + a signed receipt, paid per call over x402 in USDC. Trust-first — cites every source, says 'unknown' over guessing. No account, no API key.

## Output

A JSON object with a 'digest' containing: riskBand (categorical risk level), isToken2022 (boolean), canStillMint (boolean indicating if mint authority is active), canFreezeAccounts (boolean indicating if freeze authority is active), and top10ConcentrationPct (percentage of supply held by top 10 wallets). A disclaimer field is also included. Every field cites its on-chain source.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "mint"
 ],
 "properties": {
  "mint": {
   "type": "string",
   "description": "Base58 SPL token mint address to profile, e.g. DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 (BONK)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "digest": {
   "type": "object",
   "properties": {
    "riskBand": {
     "type": "string"
    },
    "isToken2022": {
     "type": "boolean"
    },
    "canStillMint": {
     "type": "boolean"
    },
    "canFreezeAccounts": {
     "type": "boolean"
    },
    "top10ConcentrationPct": {
     "type": "number"
    }
   }
  },
  "disclaimer": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solmachina-token-intel-2c5940f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solmachina.com](https://www.zero.xyz/host/api.solmachina.com/llms.txt)
