# SolMachina Token Risk Scanner

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

Analyzes a Solana SPL token mint address for DeFi risk signals including mint authority, freeze authority, and an overall risk band assessment

## Facts

- Endpoint: GET https://api.solmachina.com/v1/token-risk
- Price: $0.028/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-risk-scanner-f47ca1c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_87JOUEBxIAwWMQfudT8Et

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-risk-scanner-f47ca1c5
```

Example prompt: Can you check the risk profile of the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — specifically whether it has mint or freeze authority active and what the overall risk band is?

## When to prefer this

Choose this endpoint when an AI agent needs a fast, per-call, accountless Solana token risk assessment with cited on-chain sources and no API key setup. It is ideal for DeFi trading agents, wallet safety checkers, and portfolio monitors that need machine-payable (x402/USDC) access without subscription overhead. Prefer it over generic blockchain explorers when you need a structured, agent-friendly risk band output rather than raw on-chain data.

## Known failure modes

- Invalid or malformed Base58 mint address returns an error — ensure the address is a valid SPL token mint
- Token not found on Solana mainnet — returns not found error for non-existent or devnet-only mints
- Payment failure via x402 if USDC balance is insufficient — transaction rejected before analysis runs
- Rate limiting or network congestion on Solana RPC may delay response
- Recently deployed tokens may have incomplete on-chain data, resulting in partial field coverage

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

Returns a JSON object containing: a disclaimer string, mintAuthority object (whether mint authority is present, which could allow unlimited token creation), freezeAuthority object (whether freeze authority is present, which could lock user funds), and a riskAssessment object with a risk band label (e.g. LOW/MEDIUM/HIGH) and a plain-English summary. Every field cites its on-chain source; no confidence is fabricated.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "disclaimer": {
   "type": "string"
  },
  "mintAuthority": {
   "type": "object",
   "properties": {
    "present": {
     "type": "boolean"
    }
   }
  },
  "riskAssessment": {
   "type": "object",
   "properties": {
    "band": {
     "type": "string"
    },
    "summary": {
     "type": "string"
    }
   }
  },
  "freezeAuthority": {
   "type": "object",
   "properties": {
    "present": {
     "type": "boolean"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solmachina-token-risk-scanner-f47ca1c5/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)
