# Crest Systems Wallet Risk Profiler

> Crest Systems Wallet Risk Profiler is a paid API for AI agents from audit.crestsystems.ai, paid per call via x402, $0.25/call, status down (last checked 2026-09-15).

Returns a risk classification, numeric risk score (0-100), and behavioral analysis for a given EVM wallet address on a specified blockchain network.

## Facts

- Endpoint: GET https://audit.crestsystems.ai/audit/wallet
- Price: $0.25/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/audit-crestsystems-ai-656eb7b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BQNKqfVSXVMM93-RP6EiF

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 audit-crestsystems-ai-656eb7b9
```

Example prompt: Can you run a wallet risk profile on 0x742d35Cc6634C0532925a3b8D4C9b9B6d3C1a2e7 on the Base network and tell me the risk score and classification?

## When to prefer this

Use this endpoint when you need a structured, scored risk assessment of an EVM wallet address — especially for compliance checks, pre-transaction due diligence, or flagging potentially malicious counterparties. Prefer this over generic blockchain explorers when you need a quantitative risk score and behavioral classification rather than raw transaction data.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain identifier returns an error or defaults to Base
- Wallet with no on-chain history may return minimal behavioral analysis
- Payment failure (402) if USDC not provided or insufficient
- Rate limiting if too many requests in quick succession

## How this service works

Wallet risk profiling. Returns classification, risk score 0-100, and behavioral analysis grounded in real on-chain data from Base and Ethereum.

## Output

Returns a risk classification label (e.g. low/medium/high risk), a numeric risk score from 0 to 100, and a behavioral analysis narrative summarizing suspicious or notable on-chain activity for the queried wallet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "Blockchain network (default: base)"
  },
  "address": {
   "type": "string",
   "description": "EVM wallet address to profile"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/audit-crestsystems-ai-656eb7b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from audit.crestsystems.ai](https://www.zero.xyz/host/audit.crestsystems.ai/llms.txt)
