# SolMachina Batch Token Risk Assessment

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

Returns risk band assessments for up to 10 Solana SPL tokens in a single call, with source-cited confidence scores and no API key required.

## Facts

- Endpoint: GET https://api.solmachina.com/v1/batch/token-risk
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solmachina-batch-token-risk-assessment-34b56f13
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vi9Iu0djcesid7VGVVUCF

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-batch-token-risk-assessment-34b56f13
```

Example prompt: Can you check the risk level of these three Solana tokens for me — EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v, So11111111111111111111111111111111111111112, and DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to know which ones are high-risk before I trade them.

## When to prefer this

Use this endpoint when you need to screen multiple Solana SPL tokens for risk in a single round-trip without registering an account or obtaining an API key. It is ideal for DeFi trading bots, portfolio managers, and AI agents that need source-cited, fabrication-free risk intelligence paid per-call via USDC on Solana. Prefer this over single-token endpoints when evaluating 2–10 tokens at once to minimize latency and cost.

## Known failure modes

- Invalid or malformed base58 mint address causes that entry to be skipped or return an error result
- More than 10 mints submitted — excess entries are removed or rejected
- Payment failure via x402 returns a 402 response requiring USDC payment on Solana mainnet
- Unknown or very new token with no on-chain history may return low-confidence or missing riskBand
- Network timeout or Solana RPC unavailability causes 503 or empty response

## 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 with the count of requested mints, the number processed, and an array of results per mint — each containing the mint address and a risk object with a riskBand classification (e.g. low/medium/high) and a human-readable disclaimer citing the data sources used for the assessment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "mints"
 ],
 "properties": {
  "mints": {
   "type": "string",
   "description": "Comma-separated base58 SPL mint addresses, up to 10 (duplicates removed), e.g. mintA,mintB,mintC."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "results": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "mint": {
      "type": "string"
     },
     "risk": {
      "type": "object",
      "properties": {
       "riskBand": {
        "type": "string"
       },
       "disclaimer": {
        "type": "string"
       }
      }
     }
    }
   }
  },
  "requested": {
   "type": "integer"
  }
 }
}
```

## More

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