# Contract Risk Screener

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

Screens an EVM smart contract address for security risks and flags potential vulnerabilities or malicious patterns

## Facts

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

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

Example prompt: Can you run a risk screen on this contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 and tell me if it looks safe to interact with?

## When to prefer this

Use this endpoint when an agent needs a fast, automated pre-interaction security check on an EVM smart contract address — particularly before approving transactions, swapping tokens, minting NFTs, or investing in DeFi protocols. Prefer this over manual audits when speed and cost ($0.05 per call) matter more than exhaustive code review.

## Known failure modes

- Invalid or malformed contract address returns an error
- Contract address not deployed on-chain may return not found or no data
- Non-EVM chain addresses (e.g. Solana, Bitcoin) will not be supported
- Rate limiting or payment failure may block the request
- Newly deployed contracts with minimal on-chain history may yield incomplete analysis

## How this service works

EVM contract risk screen

## Output

Returns a risk assessment for the given EVM contract address, likely including a risk score, identified vulnerability categories, flagged patterns such as honeypot indicators, rug pull mechanisms, backdoors, or known exploit signatures, and an overall safety verdict.

## 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/contract-risk-screener-e9a13213/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from etherealgoodsco.online](https://www.zero.xyz/host/etherealgoodsco.online/llms.txt)
