# SuVerse EVM Token Risk Analyzer (Base Chain)

> SuVerse EVM Token Risk Analyzer (Base Chain) is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Performs comprehensive security risk analysis on any ERC20 token on Base chain, returning a 0–100 composite risk score with 20+ security signals including honeypot detection, mint authority, blacklist functions, and holder concentration.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/evm-token-risk-base
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-3244fac5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MZQQqshJqKEX5Q_o07pjd

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 proxy-suverse-io-3244fac5 -d '<json body>'
```

Example prompt: Before I buy this Base chain token at 0x1234...abcd, can you run a full security risk check on it — I want to know if it's a honeypot, whether ownership is renounced, mint authority status, top holder concentration, and an overall risk score out of 100?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-signal security assessment of an ERC20 token on Base chain specifically — especially for AI trading agents performing automated DeFi due diligence, rug pull detection, or honeypot screening before executing a trade. Prefer this over generic contract lookup endpoints when you need a single aggregated risk score rather than raw contract data.

## Known failure modes

- Invalid or non-existent token contract address returns an error or empty result
- Token not deployed on Base chain causes lookup failure
- Rate limiting or payment failure (402) if USDC payment is not attached
- Newly deployed tokens with insufficient on-chain data may return incomplete signal coverage
- Contract address for a non-ERC20 contract may return partial or misleading results

## How this service works

ERC20 token risk analysis on Base mainnet. Checks ownership renounced, mint authority, blacklist functions, honeypot, top-holder concentration, 20+ security signals. 0-100 risk score with red/green flags. AI agent scam detector, DeFi due diligence, token safety API, Base L2.

## Output

Returns a composite risk score from 0 to 100, along with categorized red flags (e.g. honeypot detected, mint authority present, blacklist functions found, high holder concentration) and green flags (e.g. ownership renounced, liquidity locked), covering 20+ security signals for the queried ERC20 token on Base chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-3244fac5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
