Live on Base

Rug Scanner

On-chain token risk analysis for AI agents.
7 parallel checks, deterministic scoring, no LLMs.
$0.05 USDC per scan via x402 protocol.

Endpoints

POST /scan $0.05 — Full token risk analysis
GET /health Free — Health check
GET /.well-known/x402.json Free — x402 discovery

7 On-Chain Checks

Contract Bytecode
Mint, blacklist, pause, proxy, fee selectors via EVMole
Holder Concentration
Top 5/10 holder %, deployer holdings
Liquidity Pools
Uni V2/V3 + Aerodrome, reserves, LP lock status
Deployer History
Wallet age, tx count, ETH balance
Buy/Sell Simulation
Tax detection via router simulation
Source Verification
Basescan / Etherscan verified status
Market Data
Price, volume, pair age via DEXScreener

Verdicts

CRITICAL HIGH RISK MEDIUM RISK LOW RISK SAFE

Chains

Base Ethereum

Example Request

// Using @x402/fetch — payment is automatic
const response = await x402Fetch('https://rug-scanner-production.up.railway.app/scan', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    token: '0x...',
    chain: 'base'
  })
});

Example Response

{
  "verdict": "HIGH_RISK",
  "score": 4,
  "confidence": 1.0,
  "flags": [
    { "severity": "high", "type": "can_mint", "detail": "Contract has mint function" },
    { "severity": "high", "type": "lp_unlocked", "detail": "LP tokens are not locked" }
  ],
  "data": { /* contract, holders, liquidity, deployer, trading, market */ }
}

Links

GitHub · x402 Discovery · x402 Protocol