# Wallet Risk Profile API

> Wallet Risk Profile API is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Returns a full risk profile for a crypto wallet address including behavior classification, credit score (0-100), and labeled counterparty exposure in a single paid call.

## Facts

- Endpoint: GET https://api.x402node.dev/wallet/risk-profile
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402node-dev-d700be5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XCmRiiK-KzPAAe7-lyPae

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 api-x402node-dev-d700be5c
```

Example prompt: Before I send payment, can you pull the full risk profile on wallet 0x4f3edf983ac636a65a842ce7c78d9aa706d3b113 — I need the verdict, credit score, primary behavior tag, any red flags like mixer or sanctions exposure, and counterparty risk over the last 7 days?

## When to prefer this

Use this endpoint when you need a comprehensive, all-in-one wallet risk assessment without making multiple separate API calls for classification, credit scoring, and exposure. It is ideal for AI agents performing payment-routing risk gating, due diligence before sending funds, or compliance screening, especially when cost-efficiency of a single paid call matters over granular separate queries.

## Known failure modes

- Invalid or malformed wallet address returns a 400 error
- Wallet address with no on-chain history may return zero-history red flag rather than an error
- Payment not received or insufficient USDC balance results in 402 payment required
- Network timeouts if underlying blockchain data providers are slow
- Unsupported chain or address format returns an error

## How this service works

Full wallet risk profile in one call: behavior classification + credit score (0-100) + labeled-counterparty exposure (last N days, default 7). Returns verdict (low_risk/medium_risk/high_risk/flagged), risk_score, primary_tag, red_flags (zero-history, sanctioned/mixer/scam), plus identity/credit/exposure detail. Replaces classify+score+exposure in one paid call. For AI agent due diligence and payment-routing risk gating. Accepts payment on Base or Solana — either network works.

## Output

A JSON object containing a verdict (low_risk/medium_risk/high_risk/flagged), a numeric risk_score, primary_tag describing wallet behavior, red_flags listing issues like zero-history, sanctioned/mixer/scam exposure, plus detailed identity, credit score (0-100), and labeled counterparty exposure for the specified lookback period.

## Example request

```json
{
 "chain": "ethereum",
 "address": "0x4f3edf983ac636a65a842ce7c78d9aa706d3b113"
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "days": {
       "type": "string",
       "description": "Days (optional)"
      },
      "address": {
       "type": "string",
       "description": "EVM/chain address (required)"
      },
      "toAddress": {
       "type": "string",
       "description": "ToAddress (optional)"
      },
      "fromAddress": {
       "type": "string",
       "description": "FromAddress (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402node-dev-d700be5c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
