# Token Risk Verdict (DEX + Security Analysis)

> Token Risk Verdict (DEX + Security Analysis) is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a composite 0-100 risk score and low/medium/high verdict for a token contract, combining DEX market data (price, liquidity, volume) with on-chain security checks (honeypot, taxes, mintable, ownership).

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/data/token-verdict
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-risk-verdict-dex-security-analysis-b5ebe727
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MPH7XEfSI1J3RFtfZ6PJY

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-risk-verdict-dex-security-analysis-b5ebe727
```

Example prompt: Can you run a full risk check on this token at 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed on Base chain (chain ID 8453) — I want to know if it's a honeypot, what the taxes are, and what the overall risk verdict is?

## When to prefer this

Choose this endpoint when you need a single, consolidated risk verdict on a token contract combining both on-chain security analysis and real DEX market data, rather than calling separate honeypot checkers, tax analyzers, or DEX price APIs individually. Especially useful for pre-trade safety gates in DeFi bots or when evaluating unfamiliar tokens on Base or other supported EVM chains.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty result
- Unsupported chain ID returns an error
- Token not yet indexed by DEX data providers returns incomplete market data
- Contract on a chain with low liquidity may have unreliable price/volume data
- Network timeout if the upstream DEX or security oracle is slow

## How this service works

Token risk score and scam/honeypot check: is this token safe to buy or a rug pull? Composite verdict on an EVM token by contract address — DEX market data (price, liquidity, volume) + contract security (honeypot, buy/sell taxes, mintable, ownership) + deterministic 0-100 risk score. ?address=0x...&chain=8453

## Output

Returns a JSON object with the token contract address, a 0-100 integer risk_score (higher = riskier), a verdict enum of 'low', 'medium', or 'high', a boolean honeypot flag, buy_tax and sell_tax as decimals, a boolean mintable flag, and an array of human-readable risk flags describing specific issues found.

## 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",
     "properties": {
      "address": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "flags": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "address": {
     "type": "string"
    },
    "buy_tax": {
     "type": "number"
    },
    "verdict": {
     "enum": [
      "low",
      "medium",
      "high"
     ],
     "type": "string"
    },
    "honeypot": {
     "type": "boolean"
    },
    "mintable": {
     "type": "boolean"
    },
    "sell_tax": {
     "type": "number"
    },
    "risk_score": {
     "type": "integer",
     "maximum": 100,
     "minimum": 0
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-risk-verdict-dex-security-analysis-b5ebe727/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
