# OnchainPulse Token Safety Check

> OnchainPulse Token Safety Check 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).

Checks whether a token is safe to buy by running rug-pull and honeypot analysis across 10 chains, returning a single CLEAR/CAUTION/AVOID verdict with supporting risk signals.

## Facts

- Endpoint: GET https://onchainpulse.theaslangroupllc.com/api/token-safety
- 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-token-safety-check-4a31fe8b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QET7ZSgECiTaGk2rr6n1p

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-token-safety-check-4a31fe8b
```

Example prompt: Before I swap into it, can you check if the token at address 0x6B175474E89094C44Da98b954EedeAC495271d0F is safe — I need to know if it's a honeypot or rug pull risk on Ethereum.

## When to prefer this

Use this endpoint when you need a fast, single-call, cross-chain token safety verdict before executing a swap or recommending a token to a user. It is ideal for trading agents, wallet guardrails, and DeFi automation pipelines that need a deterministic CLEAR/CAUTION/AVOID signal without building custom rug-detection logic. Prefer this over manual on-chain inspection when you need sell-simulation honeypot detection, authority flag checking, and LP analysis fused into one response across 10 chains including Solana, EVM chains, and Algorand.

## Known failure modes

- Unknown or unresolvable token address — returns error if address doesn't match any supported chain format
- Unsupported chain — if chain override is provided but not in the supported list, returns validation error
- Token too new or no liquidity data available — may return CAUTION or incomplete signals
- Network timeout fetching live on-chain data — may return partial results or error
- Invalid address format — malformed address string returns a 400-level error

## How this service works

Token safety check — answers "is this token safe to buy?" for any token: one deterministic CLEAR / CAUTION / AVOID rug & honeypot verdict across 10 chains (Solana, Base, Ethereum, BSC, Arbitrum, Polygon, Optimism, Avalanche, Robinhood Chain, Algorand). Auto-detects the chain from the address shape. Sell-simulation honeypot, mint/freeze/clawback authority, LP lock/burn, holder concentration, live liquidity — fused into one verdict. Pre-swap guardrail for trading agents and agent wallets.

## Output

Returns a single deterministic verdict of CLEAR, CAUTION, or AVOID along with supporting signals including honeypot sell-simulation result, mint/freeze/clawback authority presence, LP lock/burn status, holder concentration metrics, and live liquidity figures. Chain is auto-detected from the address format.

## 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": {
      "chain": {
       "type": "string",
       "description": "Optional chain override — solana, algorand, base, ethereum, bsc, arbitrum, polygon, optimism, avalanche, robinhood"
      },
      "token": {
       "type": "string",
       "description": "Token address on any supported chain: 0x contract (EVM), base58 mint (Solana), or numeric ASA id (Algorand); chain is auto-detected"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainpulse-token-safety-check-4a31fe8b/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)
