# joe-evm-token-screener

> joe-evm-token-screener is a paid API for AI agents from queue-worldcat-webmaster-define.trycloudflare.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Runs deterministic multi-stage EVM token due diligence and returns a verdict plus per-stage summary for a given token contract address on a specified EVM chain.

## Facts

- Endpoint: GET https://queue-worldcat-webmaster-define.trycloudflare.com/v1/screen
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/joe-evm-token-screener-3056467e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OCNceTJwSogzKThZ9Tzq0

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 joe-evm-token-screener-3056467e
```

Example prompt: Can you run a full token diligence screen on the contract 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base (chain ID 8453) and tell me the verdict and any stage failures?

## When to prefer this

Use this endpoint when you need a detailed, multi-stage diligence breakdown with a final verdict for a specific EVM token contract — particularly when you want to understand which individual screening stages pass or fail, not just a binary yes/no. Prefer this over the sibling joe-evm-token-viability endpoint when you need full audit detail rather than a quick heuristic GO/SOFT_NO/HARD_NO signal.

## Known failure modes

- Invalid or checksumless contract address returns an error
- Unsupported chain ID results in a coverage error or HARD_NO verdict
- Unverified or honeypot contracts may return a FAIL verdict with limited stage detail
- Network or RPC errors may cause incomplete stage results
- Coverage limits mean a PASS verdict does not guarantee safety — only that checked stages passed

## How this service works

Deterministic multi-stage EVM token diligence (verdict + stage summary). Not financial advice; coverage limits ≠ pass.

## Output

Returns a structured diligence verdict (e.g. PASS, FAIL, or similar) along with a per-stage summary detailing which checks passed or failed across multiple screening dimensions such as contract verification, liquidity, ownership, and other EVM-specific risk factors.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "chain_id",
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Token contract 0x address"
      },
      "chain_id": {
       "type": "integer",
       "description": "EVM chain id (e.g. 8453 Base)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/joe-evm-token-screener-3056467e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from queue-worldcat-webmaster-define.trycloudflare.com](https://www.zero.xyz/host/queue-worldcat-webmaster-define.trycloudflare.com/llms.txt)
