# ERC-20 Token Rug-Check Risk Score

> ERC-20 Token Rug-Check Risk Score is a paid API for AI agents from webtools402.176-109-107-191.sslip.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a composite 0-100 risk score, category (low/medium/high/critical), and per-dimension flags for an ERC-20 token across six on-chain risk dimensions on multiple EVM chains

## Facts

- Endpoint: GET https://webtools402.176-109-107-191.sslip.io/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/erc-20-token-rug-check-risk-score-68eab442
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IIvqoS7a5VYz-CoPR4LTt

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 erc-20-token-rug-check-risk-score-68eab442
```

Example prompt: Can you run a rug-check risk score on the token at 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum — I want to see the overall score, category, and any red flags across contract integrity, honeypot detection, and holder concentration?

## When to prefer this

Use this endpoint when you need a quick, deterministic, multi-dimensional risk assessment of any ERC-20 token before interacting with it — particularly for rug-pull detection, honeypot checks, and contract safety screening across Base, Ethereum, Arbitrum, Optimism, or Polygon. Prefer this over manual on-chain lookups when you need a single normalized score and categorized flags rather than raw contract data.

## Known failure modes

- Invalid or malformed token address returns an error
- Token not found on the specified network returns a 404 or empty result
- Unsupported network name returns a validation error
- Network RPC timeout causes a failed or partial response
- Token with no liquidity may have incomplete liquidity dimension scoring

## How this service works

Composite rug-check risk score for an ERC-20 token: a 0-100 score, a category (low/medium/high/critical), per-dimension flags, reasons and weighted signals. Scored deterministically across six dimensions — contract integrity, ownership, holder concentration, liquidity, honeypot and age. Multi-chain EVM. Automated risk indicators, not financial advice.

## Output

A JSON object containing a composite risk score from 0 to 100, a risk category label (low/medium/high/critical), individual flags and findings across six dimensions (contract integrity, ownership, holder concentration, liquidity, honeypot, and age), human-readable reasons for risk signals, and weighted contributing signals.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "ERC-20 token contract address (0x-prefixed, 40 hex chars)"
      },
      "network": {
       "enum": [
        "base",
        "ethereum",
        "arbitrum",
        "optimism",
        "polygon"
       ],
       "type": "string",
       "description": "EVM network the token lives on (default base)"
      }
     }
    }
   },
   "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/erc-20-token-rug-check-risk-score-68eab442/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from webtools402.176-109-107-191.sslip.io](https://www.zero.xyz/host/webtools402.176-109-107-191.sslip.io/llms.txt)
