# Webacy Risk Score API

> Webacy Risk Score API is a paid API for AI agents from api.webacy.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns a comprehensive blockchain wallet risk score including contract/EOA classification, token standard, and identified risk issues for a given address and chain.

## Facts

- Endpoint: GET https://api.webacy.com/addresses/:address
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webacy-risk-score-api-0a17d2bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5WeI2kSY7lKJvgNrKo7vY

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 webacy-risk-score-api-0a17d2bb
```

Example prompt: Can you run a Webacy risk score on the Ethereum wallet 0xAbc123...def456 and tell me if it's flagged for any risk issues or suspicious behavior?

## When to prefer this

Choose this endpoint when you need a multi-dimensional, provider-aggregated risk analysis for a blockchain wallet — including contract classification, token standard detection, and specific risk issue identification — rather than a simple balance or transaction lookup. It is especially useful for compliance screening, pre-transaction counterparty risk assessment, and DeFi safety checks across multiple chains (Ethereum, BSC, Polygon, Arbitrum, Optimism, Base, Solana).

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported chain identifier causes a 400 or invalid chain error
- Address with no on-chain history may return minimal risk data
- Rate limiting or quota exhaustion returns a 429 error
- Missing required 'chain' query parameter causes a 400 bad request
- $0.50 USDC x402 payment failure blocks the request

## How this service works

Comprehensive risk analysis for a blockchain wallet address: contract/EOA classification, token standard, and identified risk issues across all providers.

## Output

Returns a JSON object containing: contract vs EOA classification, token standard (e.g. ERC-20, ERC-721), a risk score, and a list of identified risk issues or flags (e.g. mixer exposure, sanctions, scam associations) across the requested analysis modules.

## 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"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "address": {
       "type": "string",
       "description": "Wallet address to score"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "chain"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network, e.g. eth, bsc, pol, arb, opt, base, sol"
      },
      "modules": {
       "type": "string",
       "description": "Comma-separated risk analysis modules, e.g. fund_flow_screening"
      },
      "show_low_risk": {
       "type": "boolean"
      },
      "detailed_response": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webacy-risk-score-api-0a17d2bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webacy.com](https://www.zero.xyz/host/api.webacy.com/llms.txt)
