# svm402 Base ERC-20 Token Forensics Report

> svm402 Base ERC-20 Token Forensics Report is a paid API for AI agents from svm402.com, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-15).

Returns a comprehensive on-chain forensics report for a Base ERC-20 token, including metadata, deployer profile, holder concentration, LP-lock heuristic, and risk flags.

## Facts

- Endpoint: GET https://svm402.com/api/v1/x402/base/token/:address/report
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/svm402-com-e496fe16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B6_78UzxA6RSAN6ruvlg0

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 svm402-com-e496fe16
```

Example prompt: Run a full on-chain forensics report on the Base ERC-20 token at address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 — I want to see holder concentration, whether liquidity is locked, deployer holdings, and any risk flags like mintable or proxy-upgradeable.

## When to prefer this

Use this endpoint when you need a single-call comprehensive forensics summary of a Base ERC-20 token for due diligence, risk assessment, or agentic DeFi workflows — especially when you need holder concentration, deployer risk, and contract trait flags in one response rather than assembling them from multiple raw blockchain RPCs.

## Known failure modes

- Invalid or non-ERC-20 contract address returns an error or empty report
- Token not indexed on Blockscout may return incomplete data
- Non-Base chain addresses will not be resolved correctly
- Payment failure via x402/USDC prevents the call from completing
- Rate limiting or upstream Blockscout downtime may cause timeouts

## How this service works

On-chain forensics for a Base ERC-20 sourced from Blockscout: token metadata (name, symbol, decimals, total supply, financials, verified status), deployer profile (balance, creation, activity), token activity metrics, holder count, raw and circulating-supply-adjusted top-10 holder concentration, a per-holder breakdown of the top 10 with category tags (burn / bridge / deployer / contract / eoa / unknown), deployer holdings, an LP-lock heuristic, and descriptive attribute flags. Address is supplied via the `:address` path parameter. Pay-per-call via x402 / USDC on Base.

## Output

A structured JSON report including: token metadata (name, symbol, decimals, total supply, exchange rate, circulating market cap, verified status), deployer profile (balance, creation tx, activity), token activity metrics, holder count, raw and circulating-supply-adjusted top-10 holder concentration percentages, per-holder breakdown with category tags (burn/bridge/deployer/contract/eoa/unknown), deployer holdings percentage, LP-lock heuristic boolean, contract traits (mintable, pausable, ownable, blacklist, fee_setter, proxy_upgradeable), and descriptive risk flags array.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "address",
      "chain",
      "token",
      "deployer",
      "token_activity",
      "holder_count",
      "top10_concentration_pct",
      "circulating_top10_concentration_pct",
      "top_holders",
      "deployer_holdings_pct",
      "lp_locked_heuristic",
      "contract",
      "flags"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "const": "base"
      },
      "flags": {
       "type": "array",
       "items": {
        "enum": [
         "high_concentration",
         "deployer_holds_large",
         "unverified_contract",
         "lp_locked",
         "mintable",
         "pausable",
         "proxy_upgradeable"
        ],
        "type": "string"
       }
      },
      "token": {
       "type": "object",
       "required": [
        "name",
        "symbol",
        "decimals",
        "total_supply",
        "circulating_market_cap",
        "exchange_rate",
        "type",
        "verified"
       ],
       "properties": {
        "name": {
         "type": [
          "string",
          "null"
         ]
        },
        "type": {
         "type": [
          "string",
          "null"
         ]
        },
        "symbol": {
         "type": [
          "string",
          "null"
         ]
        },
        "decimals": {
         "anyOf": [
          {
           "type": "integer",
           "minimum": 0
          },
          {
           "type": "null"
          }
         ]
        },
        "verified": {
         "type": [
          "boolean",
          "null"
         ]
        },
        "total_supply": {
         "type": [
          "string",
          "null"
         ]
        },
        "exchange_rate": {
         "type": [
          "string",
          "null"
        
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/svm402-com-e496fe16/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from svm402.com](https://www.zero.xyz/host/svm402.com/llms.txt)
