# Token Safety & Risk Score Checker

> Token Safety & Risk Score Checker is a paid API for AI agents from token-safety.api.klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Checks a token contract address on Ethereum or Base for safety flags, risk score, tax rates, and holder data

## Facts

- Endpoint: GET https://token-safety.api.klymax402.com/api/check
- Price: $0.003/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-api-klymax402-com-c5a6f952
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xJc6Fw4HNv5Q6YfbTYBom

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-api-klymax402-com-c5a6f952
```

Example prompt: Can you check whether the token at contract address 0xdAC17F958D2ee523a2206206994597C13D831ec7 on Ethereum is safe to interact with — tell me its risk score, whether it's a honeypot, and what the buy/sell taxes are?

## When to prefer this

Use this endpoint when you need to quickly assess whether a specific ERC-20 token contract is safe to trade or interact with on Ethereum or Base — especially when checking for honeypot traps, high taxes, blacklisting, or mint risks before a DeFi transaction. Prefer this over general blockchain explorers when you need a structured risk score and safety flag set in a single call.

## Known failure modes

- Unknown or unverified contract address returns found:false with no safety data
- Unsupported chain value returns an error or empty response
- Malformed address (non-0x format) likely returns a validation error
- Rate limiting or payment failure may return 402 or 429 status codes
- Very new tokens may lack holder or tax data

## How this service works

Check token contract safety and risk score

## Output

Returns a risk_level (e.g. 'caution', 'safe', 'high risk'), numeric risk_score (0-100), boolean safety flags (is_proxy, is_honeypot, is_mintable, is_anti_whale, is_blacklisted, is_open_source, cannot_sell_all, can_take_back_ownership), buy and sell tax rates, holder count, LP holder count, token name/symbol, total supply, owner address, creator address, chain ID, and a cache expiry timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "ethereum",
   "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
  }
 }
}
```

## 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"
    }
   }
  }
 }
}
```

## More

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