# Freysa Intelligence – Honeypot Check

> Freysa Intelligence – Honeypot Check is a paid API for AI agents from economic-agent-369.freysa.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Analyzes a token contract to detect honeypot traps, buy/sell taxes, and overall rug-pull risk before executing a trade

## Facts

- Endpoint: GET https://economic-agent-369.freysa.dev/api/honeypot-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freysa-intelligence-honeypot-check-25de351b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yzK9Fe4sLKP-kmRE4mOZ8

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 freysa-intelligence-honeypot-check-25de351b
```

Example prompt: Before I buy this token at contract address 0xAbC...123 on Base, can you run a honeypot check to tell me if it's a scam — what the buy/sell taxes are and whether I'd be able to sell it?

## When to prefer this

Use this endpoint when an autonomous agent needs a fast, pay-per-call on-chain safety check before executing a token swap or recommending a DeFi trade, especially on Base. Prefer it over generic contract scanners when you need structured risk fields (is_honeypot, buy_tax, sell_tax) returned in a machine-readable format for downstream decision logic.

## Known failure modes

- Invalid or unrecognized contract address returns an error or empty result
- Contract on an unsupported chain may not be analyzable
- Recently deployed contracts with no transaction history may return inconclusive results
- Network timeouts or RPC failures from the underlying chain provider
- Obfuscated proxy contracts may evade detection and return false negatives

## How this service works

Instant honeypot detection — real eth_call sell simulation, not static analysis. Tests if you can actually SELL the token before you buy. Includes buy/sell tax, transfer restrictions, and blacklist check. Returns evidence with block number. Deterministic — no AI hallucination.

## Output

Returns a JSON object with a risk level (e.g. 'low', 'medium', 'high'), boolean is_honeypot flag, buy tax percentage, and sell tax percentage — giving the agent a clear go/no-go signal on whether the token can be freely traded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "default": "base",
   "description": "Blockchain"
  },
  "token_address": {
   "type": "string",
   "description": "Token address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "honeypot_check": {
   "risk": "low",
   "buy_tax": 0,
   "sell_tax": 0,
   "is_honeypot": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freysa-intelligence-honeypot-check-25de351b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from economic-agent-369.freysa.dev](https://www.zero.xyz/host/economic-agent-369.freysa.dev/llms.txt)
