# EVM Contract Risk Screener

> EVM Contract Risk Screener is a paid API for AI agents from etherealgoodsco.store, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Screens an EVM smart contract address for on-chain risk signals and returns a risk assessment

## Facts

- Endpoint: POST https://etherealgoodsco.store/api/contract-risk
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/evm-contract-risk-screener-78804105
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nd6VaBkFNUI7wKiHLMTnn

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 evm-contract-risk-screener-78804105 -d '<json body>'
```

Example prompt: Before I interact with this contract, can you run a risk screen on EVM contract 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 and tell me if it looks safe or has any red flags?

## When to prefer this

Use this endpoint when you need a fast, low-cost risk signal on an EVM contract address before a transaction, approval, or investment decision. It is ideal for pre-transaction gating in wallets, DeFi dashboards, or trading bots. For deeper vulnerability pattern analysis, the companion smart contract security audit endpoint on the same provider may be more appropriate.

## Known failure modes

- Invalid or malformed contract address returns an error or empty result
- Contract not yet deployed or unverified on-chain may yield limited data
- Unsupported EVM chain returns an error or no data
- Rate limiting or payment failure returns a 402 or 429 response
- Novel attack patterns not yet in the risk database may produce a false low-risk result

## How this service works

EVM contract risk screen

## Output

Returns a risk assessment for the specified EVM contract address, including a risk score, categorized risk flags (e.g. honeypot indicators, dangerous ownership patterns, blacklist status, suspicious permissions), and an overall risk classification (e.g. low/medium/high).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "EVM contract address to scan"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/evm-contract-risk-screener-78804105/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from etherealgoodsco.store](https://www.zero.xyz/host/etherealgoodsco.store/llms.txt)
