# Voltron x402 Token Risk Analyzer

> Voltron x402 Token Risk Analyzer is a paid API for AI agents from voltron-x402.bonto.run, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Assesses the risk profile of a crypto token by analyzing its contract address or symbol across major blockchains.

## Facts

- Endpoint: POST https://voltron-x402.bonto.run/token-risk
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/voltron-x402-token-risk-analyzer-f7278509
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_56td-zrvIEQM8pZO5y-TE

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 voltron-x402-token-risk-analyzer-f7278509 -d '<json body>'
```

Example prompt: Can you check the risk level of the token at contract address 0x1234567890abcdef1234567890abcdef12345678 on Base? I want to know if it's safe before I buy.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call token risk score without committing to a subscription — especially useful for DeFi agents doing on-demand pre-trade safety checks across Base, Ethereum, Solana, Polygon, BSC, and Arbitrum. Prefer this over subscription-based alternatives when call volume is low or unpredictable.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty result
- Unsupported chain may cause incorrect detection or no result
- Token symbol ambiguity across chains may return wrong token data
- Network or DexScreener lookup failures may cause 500 errors
- Payment failure via x402 protocol blocks the request before execution

## How this service works

Voltron: pay-per-call x402 API wrapping token risk, web scraping, SEO audit, and data cleaning tools. USDC on Base.

## Output

Returns a JSON object containing token risk analysis results, including risk indicators and scoring metadata for the queried token contract on the specified or auto-detected blockchain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "solana",
    "polygon",
    "bsc",
    "arbitrum"
   ],
   "type": "string",
   "description": "Chain hint (auto-detected by DexScreener)"
  },
  "contract": {
   "type": "string",
   "description": "Token contract address or symbol"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "format": "json",
 "example": {
  "description": "TokenRisk JSON result."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/voltron-x402-token-risk-analyzer-f7278509/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from voltron-x402.bonto.run](https://www.zero.xyz/host/voltron-x402.bonto.run/llms.txt)
