# SYS84 Wallet Risk Snapshot

> SYS84 Wallet Risk Snapshot is a paid API for AI agents from api.sys84.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Scores an EVM wallet address for on-chain risk, returning a risk score, risk level, verdict, and supporting signals for agent-driven access control decisions.

## Facts

- Endpoint: POST https://api.sys84.org/v1/services/wallet_risk_snapshot
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sys84-wallet-risk-snapshot-e292a52c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vKQ9WRwojcJEM7RMLiGG6

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 sys84-wallet-risk-snapshot-e292a52c -d '<json body>'
```

Example prompt: Can you run a risk snapshot on wallet 0x1234abcd...5678 on the Base chain and tell me whether it should be allowed, reviewed, or denied — I want the risk score and the reason codes too.

## When to prefer this

Choose this endpoint when you need a fast, per-call on-chain risk score for an EVM wallet address with structured verdict output (allow/deny/review) suitable for automated agent decision-making. It is well-suited for DeFi platforms, payment gateways, and compliance workflows that need machine-readable risk reason codes and on-chain signals like whale tier and token positions. Prefer this over generic blockchain explorers when you need a scored, actionable verdict rather than raw transaction history.

## Known failure modes

- Invalid or malformed EVM address returns an 'invalid' risk_level and a risk_score indicating unscoreable state
- Unsupported chain identifier may result in an error or fallback to Base chain behavior
- Payment failure via x402 protocol results in the call not being processed
- Upstream data unavailability may cause stale signals to be returned unless refresh=true is set
- Missing required address field returns a validation error

## How this service works

Cheap wallet risk snapshot for agents: score an EVM wallet before allowlisting, paying, routing, or trading with it. Returns risk score, verdict, reasons, and compact wallet signals.

## Output

Returns a JSON object containing: a numeric risk_score (0–100, higher means riskier), a risk_level string (minimal/low/medium/high/invalid), a verdict string (allow/allow_with_limits/review/deny), an array of machine-readable reason codes explaining the risk factors, and a signals object with supporting on-chain data including transaction count, token positions, whale tier classification, and safety flags.

## 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": {
    "body": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "description": "string optional, only base is supported"
      },
      "address": {
       "type": "string",
       "description": "string EVM wallet address to score"
      },
      "refresh": {
       "type": "boolean",
       "description": "boolean optional, all calls currently read fresh upstream data"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "POST",
      "PUT",
      "PATCH",
      "DELETE",
      "HEAD"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "description": "string optional, only base is supported"
      },
      "address": {
       "type": "string",
       "description": "string EVM wallet address to score"
      },
      "refresh": {
       "type": "boolean",
       "description": "boolean optional, all calls currently read fresh upstream data"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ts": {
       "type": "number",
       "description": "number Unix observation timestamp"
      },
      "quality": {
       "type": "object",
       "description": "object partial/degraded state, unavailable sources, provider status, data age seconds, and confidence"
      },
      "reasons": {
       "type": "array",
       "description": "array of machine-readable reason codes including invalid_wallet_address, zero_address_not_payable_wallet, wallet_security_flags, no_onchain_history, thin_onchain_history, established_wallet, many_token_positions, no_wallet_risk_flags, and provider_data_partial"
      },
      "refresh": {
       "type": "boolean",
       "description": "boolean whether fresh upstream checks were requested"
      },
      "signals": {
       "type": "object",
       "description": "object tx count, token positions, whale tier, and safety flags"
   
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "reasons": [],
  "signals": {},
  "verdict": "string",
  "risk_level": "string",
  "risk_score": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sys84-wallet-risk-snapshot-e292a52c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sys84.org](https://www.zero.xyz/host/api.sys84.org/llms.txt)
