# Token Safety Checker — klymax402

> Token Safety Checker — klymax402 is a paid API for AI agents from klymax402.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Checks a token contract address for safety risks including honeypot detection, buy/sell taxes, mintability, and overall risk score on Ethereum or Base.

## Facts

- Endpoint: GET https://klymax402.com/api/token-safety/api/check
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-safety-checker-klymax402-e47d5cd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3XIZoqhWVRpCBVbQxxy-h

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 token-safety-checker-klymax402-e47d5cd6
```

Example prompt: Can you check if the token at 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 is safe to trade on Ethereum — I want to know if it's a honeypot, what the buy and sell taxes are, and its overall risk score?

## When to prefer this

Use this endpoint when you need a quick, structured safety assessment of a specific token contract before trading, listing, or investing — particularly when you need honeypot detection, tax analysis, and a composite risk score in one call. Prefer this over manual block explorer lookups or generic contract readers when you need DeFi-specific risk flags (honeypot, mintable, proxy) rather than raw bytecode. Best for Ethereum and Base chains.

## Known failure modes

- Address not found on specified chain — found: false returned
- Invalid contract address format — likely 400 error or empty response
- Chain parameter not recognized — may default to Ethereum or return error
- Token contract is unverified — limited data may be returned
- Network timeout or upstream data provider unavailability
- Payment not processed — 402 response if USDC payment fails

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object with: the token name, chain and chainId, risk score (numeric), honeypot flag (boolean), buy and sell tax values, whether the contract is mintable or a proxy, total supply, and holder count — giving a comprehensive safety snapshot of the token.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain to check on: 'ethereum' or 'base' (default: ethereum)"
      },
      "address": {
       "type": "string",
       "description": "Token contract address (e.g. 0x...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "example",
  "found": true,
  "address": "example",
  "buy_tax": "example",
  "chainId": 1,
  "is_proxy": true,
  "sell_tax": "example",
  "risk_score": 1,
  "token_name": "example",
  "is_honeypot": true,
  "is_mintable": true,
  "holder_count": "example",
  "total_supply": "example"
 }
}
```

## More

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