# Riley Craig x402 Agent Store — Crypto Security / Honeypot Detector

> Riley Craig x402 Agent Store — Crypto Security / Honeypot Detector is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Checks whether a token contract address is a honeypot or has malicious flags, returning a security verdict, buy/sell tax, and risk flags — payable per-call in USDC via x402.

## Facts

- Endpoint: GET https://store.agentexchange.work/crypto/security
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riley-craig-x402-agent-store-crypto-security-honeypot-detector-89d2177c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iLtTqlt2umL7oXQQzfI8P

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-security-honeypot-detector-89d2177c
```

Example prompt: Before I buy, can you check if the token at 0x6982508145454Ce325dDbE47a25d4ec3d2311933 on Ethereum is a honeypot and tell me the buy and sell taxes?

## When to prefer this

Use this endpoint when an AI agent needs a fast, per-call, no-signup honeypot and tax check on a token contract before executing or recommending a trade. Ideal for DeFi automation agents that need machine-payable on-chain security validation without managing API keys. Prefer over manual block explorer lookups or heavier audit services when a quick pass/fail verdict with tax rates is sufficient.

## Known failure modes

- Missing or invalid contract address returns an error or empty result
- Unsupported chain identifier results in a bad request
- Contract not found on the specified chain returns no data
- Payment not received (x402 flow failure) blocks the response
- Network timeout if the on-chain RPC is slow

## 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 with: a verdict string (e.g. 'OK' or a risk label), a boolean is_honeypot flag, numeric buy_tax and sell_tax percentages, an array of risk flags, and basic token info like symbol.

## Example request

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

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riley-craig-x402-agent-store-crypto-security-honeypot-detector-89d2177c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
