# OnchainPulse EVM Token Safety Scanner

> OnchainPulse EVM Token Safety Scanner is a paid API for AI agents from onchainpulse.theaslangroupllc.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Runs a comprehensive pre-trade safety check on any EVM token — honeypot detection, tax analysis, contract risk flags, and liquidity health — returning a single CLEAR/CAUTION/AVOID verdict.

## Facts

- Endpoint: GET https://onchainpulse.theaslangroupllc.com/api/evmtoken
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchainpulse-evm-token-safety-scanner-428ece8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pHj2ww5VUDZeANPB7bFm0

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 onchainpulse-evm-token-safety-scanner-428ece8c
```

Example prompt: Before I buy this token, can you run a full safety scan on contract 0x1234...abcd on Base — check if it's a honeypot, what the buy/sell taxes are, whether the LP is locked, and give me the overall CLEAR, CAUTION, or AVOID verdict?

## When to prefer this

Use this endpoint when an AI trading agent needs a rapid, all-in-one pre-trade risk verdict on an EVM token before executing a buy — especially on Base, Ethereum, BSC, Arbitrum, Polygon, Optimism, or Avalanche. Prefer over manual contract audits when speed and breadth of checks (honeypot + tax + contract flags + liquidity) are needed in a single call.

## Known failure modes

- Unrecognized or unsupported chain ID returns an error
- Invalid or malformed contract address returns a 400-level error
- Token not yet indexed or no liquidity found returns partial/empty result
- Network RPC issues may cause timeout or incomplete scan
- Very new token with no trade history may have indeterminate honeypot simulation result

## How this service works

Honeypot, rug & token-safety scanner for Robinhood Chain, Base & EVM tokens — instant pre-trade check: sell-simulation honeypot, buy/sell tax, mint, upgradeable proxy, pausable transfers, blacklist, owner privileges, LP lock/burn, holder concentration, fused with live liquidity & flow into one CLEAR / CAUTION / AVOID verdict. Robinhood Chain (launchpad tokens incl. Pons), Base, Ethereum, BSC + 4 more. Answers: is this token safe to buy?

## Output

A structured safety report containing a top-level CLEAR/CAUTION/AVOID verdict plus individual flags: honeypot sell-simulation result, buy tax %, sell tax %, mint authority, upgradeable proxy, pausable transfers, blacklist capability, owner privilege level, LP lock/burn status, holder concentration metrics, and live liquidity data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "EVM chain (default base) — base, ethereum, bsc, arbitrum, polygon, optimism, avalanche, robinhood (Robinhood Chain)"
  },
  "address": {
   "type": "string",
   "description": "ERC-20 token contract address (0x + 40 hex)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "base",
  "token": {
   "name": "Brett",
   "symbol": "BRETT",
   "holders": "48213"
  },
  "safety": {
   "source": "goplus+dexscreener",
   "mintable": false,
   "sellable": true,
   "buy_tax_pct": 0,
   "is_honeypot": false,
   "open_source": true,
   "danger_flags": [],
   "sell_tax_pct": 0,
   "blacklist_capable": false,
   "proxy_upgradeable": false,
   "transfer_pausable": false,
   "ownership_renounced": true,
   "lp_locked_or_burned_pct": 98.5
  },
  "address": "0x532f27101965dd16442E59d40670FaF5eBB142E4",
  "is_safe": true,
  "sources": {
   "goplus": true,
   "dexscreener": true
  },
  "verdict": "CLEAR",
  "momentum": {
   "read": "buyers dominant (1.3:1 1h), $310,000 1h vol, 400h old",
   "price_usd": 0.0842,
   "market_cap": 812000000,
   "vol_h1_usd": 310000,
   "liquidity_usd": 4200000,
   "pair_age_hours": 9600,
   "buy_sell_ratio_h1": 1.3,
   "price_change_h1_pct": 2.1
  },
  "one_liner": "Clears contract & safety gates",
  "red_flags": [],
  "confidence": "high",
  "disclaimer": "On-chain contract facts + observed momentum, not financial advice or a price prediction. Memecoins are extremely high-risk.",
  "risk_score": 4,
  "green_flags": [
   "Verified open-source contract",
   "Supply not mintable",
   "Zero buy/sell tax",
   "Ownership renounced",
   "Sell simulation passed (not a honeypot)"
  ],
  "concentration": {
   "owner_pct": 0,
   "creator_pct": 1.1,
   "top_holder_pct": 4.2,
   "top10_holder_pct": 18.6
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainpulse-evm-token-safety-scanner-428ece8c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from onchainpulse.theaslangroupllc.com](https://www.zero.xyz/host/onchainpulse.theaslangroupllc.com/llms.txt)
