# Crucible Wallet Activity Audit

> Crucible Wallet Activity Audit is a paid API for AI agents from crucible.unitynodes.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Analyzes an Ethereum wallet's recent on-chain transaction activity for suspicious or risky behavior, returning flagged findings, a risk score, and cited evidence.

## Facts

- Endpoint: POST https://crucible.unitynodes.com/audit/activity
- 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/crucible-wallet-activity-audit-fab082b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fJ75a35NUVxTwxzASh8Ip

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 crucible-wallet-activity-audit-fab082b4 -d '<json body>'
```

Example prompt: Can you audit the Ethereum wallet 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD for risky or suspicious transactions over the last 60 days and give me a risk score?

## When to prefer this

Use this endpoint when you need a cited, evidence-backed risk audit of a specific Ethereum mainnet wallet's transaction history — especially when you need flagged individual transactions rather than just an aggregate risk score. Prefer it over generic blockchain explorers when you need structured findings with confidence scores and source citations suitable for agent decision-making or compliance reporting.

## Known failure modes

- Invalid or non-checksummed wallet address returns a validation error
- No on-chain activity found in the specified window returns empty findings array
- Network timeout or upstream RPC failure may return a service error
- Very large windowDays values may increase latency or hit data limits
- Non-Ethereum-mainnet addresses (e.g. L2, Solana) are not supported

## How this service works

Pay-per-call Web3 agent services: wallet, token and agent security audits; token prices, depeg checks and portfolio valuation; cited fact-checking and source research.

## Output

Returns a structured object containing: a numeric risk score (0–1), a confidence score, a list of findings (each with a reason and the flagged transaction hash), the number of transactions analyzed, the lookback window used, cited source URLs with hashes, evidence claims tied to sources, and a content hash for verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "wallet"
 ],
 "properties": {
  "wallet": {
   "type": "string",
   "description": "Wallet address (0x...), Ethereum mainnet"
  },
  "windowDays": {
   "type": "number",
   "description": "Lookback window in days (default 90)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cost": {
   "type": "number"
  },
  "data": {
   "type": "object",
   "properties": {
    "wallet": {
     "type": "string"
    },
    "analyzed": {
     "type": "number"
    },
    "findings": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "reason": {
        "type": "string"
       },
       "txHash": {
        "type": "string"
       }
      }
     }
    },
    "windowDays": {
     "type": "number"
    }
   }
  },
  "sources": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "hash": {
      "type": "string"
     },
     "name": {
      "type": "string"
     }
    }
   }
  },
  "evidence": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "claim": {
      "type": "string"
     },
     "support": {
      "type": "string"
     },
     "sourceIndex": {
      "type": "number"
     }
    }
   }
  },
  "riskScore": {
   "type": "number"
  },
  "confidence": {
   "type": "number"
  },
  "contentHash": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crucible-wallet-activity-audit-fab082b4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crucible.unitynodes.com](https://www.zero.xyz/host/crucible.unitynodes.com/llms.txt)
