# Token Risk Verdict API

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

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

## Facts

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

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-api-a4057dc2
```

Example prompt: Can you run a full risk check on token contract 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed on Base (chain 8453)? I want to know the risk score, whether it's a honeypot, and what the buy and sell taxes are.

## When to prefer this

Choose this endpoint when you need a single unified risk verdict on an EVM token combining both on-chain security analysis (honeypot detection, tax inspection, mintability) and DEX market data (price, liquidity, volume) in one call. Prefer it over standalone honeypot checkers or price APIs when you need a deterministic 0-100 risk score for automated trading decisions or pre-investment screening on Base (chain 8453) or other EVM chains.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty result
- Unsupported chain ID causes a lookup failure
- Newly deployed contract with no DEX liquidity may return incomplete market data
- Rate limiting or payment failure (x402) blocks the request
- Contract on a supported chain but with no trading history may have null price/volume fields

## How this service works

Composite risk verdict on a token by contract address: DEX market data (price, liquidity, volume) + contract security (honeypot, taxes, mintable, ownership) + deterministic 0-100 risk score. ?address=0x...&chain=8453

## Output

Returns a JSON object containing: the token contract address, a risk_score integer from 0 to 100, a verdict enum ('low', 'medium', or 'high'), a honeypot boolean, buy_tax and sell_tax as decimals, a mintable boolean, and a flags array listing specific risk indicators detected (e.g. 'high_sell_tax', 'no_liquidity', 'ownership_not_renounced').

## 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-api-a4057dc2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net:10000](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net%3A10000/llms.txt)
