# Riley Craig x402 Agent Store — Crypto Token Security Check

> Riley Craig x402 Agent Store — Crypto Token Security Check is a paid API for AI agents from x402-agent-store.rileycraig14.workers.dev, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Analyzes a token contract address for honeypot risk, buy/sell taxes, and security flags, returning a verdict and detailed risk indicators.

## Facts

- Endpoint: GET https://x402-agent-store.rileycraig14.workers.dev/crypto/security
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riley-craig-x402-agent-store-crypto-token-security-check-5d29ddfa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1pcejt6Ma3JmPacCjPA6e

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 riley-craig-x402-agent-store-crypto-token-security-check-5d29ddfa
```

Example prompt: Is the token at 0x6982508145454Ce325dDbE47a25d4ec3d2311933 on Ethereum a honeypot? Check its buy/sell tax and give me a security verdict before I trade it.

## When to prefer this

Use this endpoint when an AI agent needs to programmatically vet a token contract before trading or recommending it — especially for DeFi workflows where honeypot and tax checks are critical gating steps. Prefer over manual block explorer lookups when automation and pay-per-call simplicity (no API key) are priorities.

## Known failure modes

- Invalid contract address format returns an error
- Contract address does not exist on the specified chain
- Unsupported chain name returns an error
- Rate limiting or payment failure (x402 micropayment not processed)
- Token too new or unverified to analyze, returning incomplete data

## How this service works

Pre-trade safety check for any token contract: is it a honeypot, buy/sell tax, mintable, owner can reclaim, transfer-pausable, blacklist, open-source, holder count — plus a DANGER/HIGH_RISK/CAUTION/OK verdict and risk flags. The call every trading and sniping agent should make BEFORE buying. Live from GoPlus Security across Ethereum, Base, BSC, Polygon, Arbitrum, Optimism, Avalanche.

## Output

Returns a JSON object containing: is_honeypot (boolean), verdict string (e.g. 'OK' or risk label), buy_tax and sell_tax percentages, security flags array (empty if clean), and the token symbol. Enables agents to make informed decisions before executing a trade.

## 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": "ethereum|base|bsc|polygon|arbitrum|optimism|avalanche (default ethereum)"
      },
      "address": {
       "type": "string",
       "description": "Token contract address (0x...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "flags": {
       "type": "array"
      },
      "verdict": {
       "type": "string"
      },
      "is_honeypot": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "flags": [],
  "token": {
   "symbol": "PEPE"
  },
  "buy_tax": 0,
  "verdict": "OK",
  "sell_tax": 0,
  "is_honeypot": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riley-craig-x402-agent-store-crypto-token-security-check-5d29ddfa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-agent-store.rileycraig14.workers.dev](https://www.zero.xyz/host/x402-agent-store.rileycraig14.workers.dev/llms.txt)
