# Madhouse Wallet Avalanche Quick Scan

> Madhouse Wallet Avalanche Quick Scan is a paid API for AI agents from scan.madhousewallet.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Performs a fast on-chain risk scan of an Avalanche (EVM) wallet address, returning a toxicity score, risk level, and detailed risk flags.

## Facts

- Endpoint: GET https://scan.madhousewallet.com/api/public/quick-scan/avalanche
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scan-madhousewallet-com-d3e1a84b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E9S20_RVfpHtmUgYadxOj

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 scan-madhousewallet-com-d3e1a84b
```

Example prompt: Can you do a quick risk scan on the Avalanche wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 and tell me the risk level, toxicity score, and any flags like scammer or sanctions that fired?

## When to prefer this

Use this endpoint when you need a fast, lightweight risk check specifically on the Avalanche (AVAX) network. It is lighter than a full scan — no USD volume breakdown — making it ideal for real-time compliance checks, pre-transaction screening, or off-ramp gating where speed matters. Prefer over the full scan when you only need a pass/fail decision or top-level risk flags without deep financial analytics.

## Known failure modes

- Missing or malformed address parameter returns a 400 error
- Non-EVM address format (e.g. non-0x-prefixed) may return validation error
- Address not found on Avalanche network may return empty traits with score 0
- Payment not included or invalid x402 payment header returns 402 Payment Required
- Rate limiting or overload may return 429 or 503
- ENS resolution failure if ENS name cannot be resolved

## How this service works

Scans Avalanche addresses or activity for fast on-chain insights.

## Output

Returns a JSON object with the queried address, a numeric toxicScore, a riskLevel enum (PASS/LOW/MIDDLE/CRITICAL), a shouldFlag boolean (true if toxicScore > 0), and an array of traits listing specific risk categories that fired (e.g. known_scammer, sanction_address, mixer_transfers), each with a risk contribution value, transaction count, and human-readable description.

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "EVM wallet address (0x-prefixed, checksummed) or ENS name to scan."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "address",
      "toxicScore",
      "riskLevel",
      "shouldFlag",
      "traits"
     ],
     "properties": {
      "traits": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string",
          "description": "Risk category. Known values: known_scammer, sanction_address, blacklist, initiator_scam_transactions, suspicious_dex_pair_deployer, suspicious_deployer, attack_money_target, zero_address_risk, rug_pull, rug_pull_trader, sanction_address_communication, fake_phishing_contract_communication, fake_phishing_transfer, mixer_transfers, non_kyc_transfers."
         },
         "risk": {
          "type": "number",
          "description": "Risk contribution for this flag. >0 means flagged."
         },
         "txsCount": {
          "type": "number",
          "description": "Number of transactions related to this flag."
         },
         "description": {
          "type": "string",
          "description": "Human-readable explanation of what this flag detected."
         }
        }
       },
       "description": "Risk flags that fired on this address. Empty array means clean. Lighter than the full scan -- no USD volume breakdown, no incomingMoneyUSD/outgoingMoneyUSD fields."
      },
      "address": {
       "type": "string",
       "description": "The queried wallet address as provided."
      },
      "riskLevel": {
       "enum": [
        "PASS",
        "LOW",
        "MIDDLE",
        "CRITICAL"
       ],
       "type": "string",
       "description": "PASS = score 0; 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scan-madhousewallet-com-d3e1a84b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scan.madhousewallet.com](https://www.zero.xyz/host/scan.madhousewallet.com/llms.txt)
